From 5b03cacb9dff2872ded78259d35235937f6ca82b Mon Sep 17 00:00:00 2001 From: hjp Date: Tue, 26 Aug 2003 17:48:32 +0000 Subject: [PATCH] Kludge to make executable from the source I want (and not some chosen at random by make) --- ts/GNUmakefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/ts/GNUmakefile b/ts/GNUmakefile index a6cdd40..e52530b 100644 --- a/ts/GNUmakefile +++ b/ts/GNUmakefile @@ -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 $@