mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
c99e82c73a
Calculates the number of days between two dates
16 lines
320 B
Plaintext
16 lines
320 B
Plaintext
--- Makefile.orig Sun Jun 17 01:59:03 2001
|
|
+++ Makefile Sun Jun 17 02:01:47 2001
|
|
@@ -4,10 +4,10 @@
|
|
LIBS =
|
|
|
|
project: $(OBJS)
|
|
- gcc -s -o datedif $(LIBS) $(OBJS)
|
|
+ ${CC} ${CFLAGS} -o datedif $(LIBS) $(OBJS)
|
|
|
|
main.o: main.c
|
|
- gcc -O2 -c -o main.o main.c
|
|
+ ${CC} ${CFLAGS} -c -o main.o main.c
|
|
|
|
clean:
|
|
rm -f main.o
|