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: \
|
||||
$(BINDIR)/ts \
|
||||
|
||||
ts: %: %.o
|
||||
ts: ts.bx
|
||||
cp $< $@
|
||||
|
||||
ts.bx: ts.o
|
||||
$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
|
||||
|
||||
# $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
|
||||
|
||||
%: %.pl customize
|
||||
%.plx: %.pl customize
|
||||
sh ./customize < $< > $@
|
||||
chmod +x $@
|
||||
|
||||
|
|
Loading…
Reference in New Issue