mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
17 lines
422 B
Plaintext
17 lines
422 B
Plaintext
|
--- Makefile.orig Wed Mar 29 22:20:16 2000
|
||
|
+++ Makefile Wed Mar 29 22:21:26 2000
|
||
|
@@ -7,10 +7,11 @@
|
||
|
|
||
|
SOURCES = READ.ME Makefile blue.c blue.c.orig blue.6 blue.lsm *.spec
|
||
|
|
||
|
-CFLAGS=-O
|
||
|
+CC?=cc
|
||
|
+CFLAGS?=-O
|
||
|
|
||
|
blue: blue.c
|
||
|
- cc $(CFLAGS) -DVERSION=\"$(V)\" blue.c -lncurses -o blue
|
||
|
+ $(CC) $(CFLAGS) -DVERSION=\"$(V)\" blue.c -lncurses -o blue
|
||
|
|
||
|
blue-$(V).tar.gz: $(SOURCES)
|
||
|
@ls $(SOURCES) | sed s:^:blue-$(V)/: >MANIFEST
|