mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 12:29:16 -04:00
PR: 57693 Submitted by: Jose R.Rey <king@v2project.com> Also honor CFLAGS and clean-up install.
15 lines
348 B
Text
15 lines
348 B
Text
|
|
$FreeBSD$
|
|
|
|
--- Makefile.orig Sun Feb 23 13:11:59 2003
|
|
+++ Makefile Wed Oct 8 22:37:15 2003
|
|
@@ -1,8 +1,7 @@
|
|
-CC = gcc -Wall
|
|
BINDIR = /usr/local/bin
|
|
all: server
|
|
server:
|
|
- $(CC) -O3 -pthread -o xbms server.c
|
|
+ $(CC) $(CFLAGS) -pthread -o xbms server.c
|
|
install: all
|
|
rm -f $(BINDIR)/xbms
|
|
cp xbms $(BINDIR)
|