mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
fb289f8f70
Obtained from: OpenBSD
23 lines
494 B
Plaintext
23 lines
494 B
Plaintext
--- Makefile.orig Sat Aug 22 09:03:00 1998
|
|
+++ Makefile Sun Mar 5 02:20:19 2000
|
|
@@ -1,12 +1,17 @@
|
|
# Makefile for the Linux Netbus Client by noupe@efnet #hack.se
|
|
|
|
-CC = gcc -Wall -O3
|
|
+CC ?= gcc
|
|
+CFLAGS ?= -O3
|
|
+CFLAGS += -Wall
|
|
OBJEKTFILER = lxnetbus.o lxnbfunc.o lxnbmenu.o
|
|
|
|
-
|
|
all: ${OBJEKTFILER} lxnetbus
|
|
|
|
lxnetbus: ${OBJEKTFILER}
|
|
+ ${CC} ${CFLAGS} -o $@ ${OBJEKTFILER}
|
|
+
|
|
+install:
|
|
+ install -c -m 755 lxnetbus ${PREFIX}/bin/lxnb
|
|
|
|
clean:
|
|
rm -f *.o *~ diskdump.txt screendump.jpg
|