mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
28989c4601
so I had to play it a bit by ear, but I didn't hear back from the maintainer. Noticed by: bento
28 lines
508 B
Plaintext
28 lines
508 B
Plaintext
--- Makefile.orig Thu Jan 13 20:15:01 2000
|
|
+++ Makefile Sun Jan 30 17:56:18 2000
|
|
@@ -25,17 +25,13 @@
|
|
#
|
|
# DHIS(c) Dynamic Host Information System Release 3.1
|
|
|
|
-CC=cc
|
|
-CFLAGS=
|
|
-LFLAGS=
|
|
-LIBS=
|
|
+CC?=cc
|
|
RM=rm -f
|
|
|
|
all: dhid
|
|
|
|
dhid: conf.o endian.o network.o crypt.o main.o
|
|
$(CC) $(LFLAGS) -o dhid conf.o endian.o network.o crypt.o main.o $(LIBS)
|
|
- strip dhid
|
|
|
|
main.o: dhid.h network.h conf.h main.c
|
|
$(CC) $(CFLAGS) -c main.c
|
|
@@ -54,3 +50,5 @@
|
|
|
|
clean:
|
|
$(RM) *.core core dhid *.o
|
|
+
|
|
+all: dhid
|