mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 01:09:24 -04:00
26 lines
534 B
Text
26 lines
534 B
Text
|
|
$FreeBSD$
|
|
|
|
--- ztcfg/Makefile
|
|
+++ ztcfg/Makefile
|
|
@@ -10,10 +10,19 @@
|
|
|
|
all: ztcfg libtonezone.a
|
|
|
|
-ztcfg: ztcfg.o tonezone.o zonedata.o
|
|
+ztcfg: ztcfg.o tonezone.o zonedata.o
|
|
${CC} ${CFLAGS} -o ztcfg ztcfg.o tonezone.o zonedata.o -lm
|
|
|
|
ztcfg.c: ztcfg.h
|
|
+
|
|
+ztcfg.o: ztcfg.c
|
|
+ ${CC} ${CFLAGS} -o ztcfg.o -c ztcfg.c
|
|
+
|
|
+tonezone.o: tonezone.c
|
|
+ ${CC} ${CFLAGS} -o tonezone.o -c tonezone.c
|
|
+
|
|
+zonedata.o: zonedata.c
|
|
+ ${CC} ${CFLAGS} -o zonedata.o -c zonedata.c
|
|
|
|
libtonezone.a: tonezone.o
|
|
ar r libtonezone.a tonezone.o zonedata.o
|