From 3362ed9a9bbcb9710f907d0f3dfe338ada53ed4f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 14 Dec 2000 15:30:52 +0000 Subject: [PATCH] BSD make doesn't understand $< like GNU make does, thus it is better to explicitely name the targets for the sake of portability. --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 6021775..1e6ed06 100644 --- a/Makefile.in +++ b/Makefile.in @@ -23,7 +23,7 @@ LIBS = librfc822/librfc822.a liblists/liblists.a libargv/libargv.a \ .SUFFIXES: .c .o .c.o: - $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@ + $(CC) $(CFLAGS) $(CPPFLAGS) -c $< all: hermes listserv @@ -40,7 +40,7 @@ acl.c acl_scan.h: acl.y mv y.tab.h acl_scan.h acl_scan.c: acl_scan.l acl_scan.h - $(LEX) -i -Pacl $< + $(LEX) -i -Pacl acl_scan.l mv lex.acl.c acl_scan.c acl.c: acl_scan.c