Kludge to make executable from the source I want (and not some

chosen at random by make)
This commit is contained in:
hjp 2003-08-26 17:48:32 +00:00
parent 73952330cb
commit 5b03cacb9d
1 changed files with 5 additions and 4 deletions

View File

@ -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 $@