forked from Lainports/freebsd-ports
36 lines
1.1 KiB
Text
36 lines
1.1 KiB
Text
--- Makefile.orig Sun Jul 16 07:01:56 2000
|
|
+++ Makefile Tue Dec 5 23:30:00 2000
|
|
@@ -6,7 +6,7 @@
|
|
#
|
|
############################################################################
|
|
|
|
-CC = cc
|
|
+CC ?= cc
|
|
|
|
#
|
|
# ADD_CFLAGS: Add -DVI_KEYS if you want vi-cursor-keys
|
|
@@ -25,10 +25,10 @@
|
|
###########################
|
|
# LINUX (testet with ncurses 5.0)
|
|
###########################
|
|
-COLOR = -DCOLOR_SUPPORT
|
|
+#COLOR = -DCOLOR_SUPPORT
|
|
#CLOCK = -DCLOCK_SUPPORT # Experimental!
|
|
-CFLAGS = $(ADD_CFLAGS) $(COLOR) $(CLOCK)
|
|
-LIBS = -lncurses
|
|
+#CFLAGS = $(ADD_CFLAGS) $(COLOR) $(CLOCK)
|
|
+#LIBS = -lncurses
|
|
|
|
###########################
|
|
# LINUX (X11 using PDCurses) thanks to Mark Hessling
|
|
@@ -43,8 +43,8 @@
|
|
###########################
|
|
# FreeBSD (Thanks to Peter Brevik)
|
|
###########################
|
|
-#CFLAGS = -DCOLOR_SUPPORT -DNCURSES
|
|
-#LIBS = -lncurses -lmytinfo -lcompat
|
|
+CFLAGS += -DCOLOR_SUPPORT -DNCURSES
|
|
+LIBS = -lncurses -lmytinfo -lcompat
|
|
|
|
###########################
|
|
# DOS/Windows with DJGPP
|