Check-in Number:
|
222 | |
Date: |
2000-Dec-13 16:30:52 (local)
2000-Dec-13 15:30:52 (UTC) |
User: | simons |
Branch: | |
Comment: |
BSD make doesn't understand $< like GNU make does, thus it is better
to explicitely name the targets for the sake of portability. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/petidomo/Makefile.in 1.5 -> 1.6
--- Makefile.in 2000/12/14 15:26:44 1.5
+++ Makefile.in 2000/12/14 15:30:52 1.6
@@ -23,7 +23,7 @@
.SUFFIXES: .c .o
.c.o:
- $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
+ $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
all: hermes listserv
@@ -40,7 +40,7 @@
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
|
|