Kludge to make executable from the source I want (and not some
chosen at random by make)
This commit is contained in:
parent
73952330cb
commit
5b03cacb9d
|
@ -11,12 +11,13 @@ clean:
|
||||||
install: \
|
install: \
|
||||||
$(BINDIR)/ts \
|
$(BINDIR)/ts \
|
||||||
|
|
||||||
ts: %: %.o
|
ts: ts.bx
|
||||||
|
cp $< $@
|
||||||
|
|
||||||
|
ts.bx: ts.o
|
||||||
|
$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
|
||||||
|
|
||||||
# $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
|
%.plx: %.pl customize
|
||||||
|
|
||||||
%: %.pl customize
|
|
||||||
sh ./customize < $< > $@
|
sh ./customize < $< > $@
|
||||||
chmod +x $@
|
chmod +x $@
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue