600c81e1b3
- Switch to options helpers - Regenerate patches
34 lines
601 B
Text
34 lines
601 B
Text
--- Makefile.orig 2002-07-27 07:36:19 UTC
|
|
+++ Makefile
|
|
@@ -6,9 +6,8 @@
|
|
#
|
|
# Makefile for the ncurses frontend of the library
|
|
|
|
-CC = gcc
|
|
-CPP = g++
|
|
-CFLAGS = -g -I. -Wall
|
|
+CFLAGS += -I.
|
|
+CXXFLAGS += -I.
|
|
|
|
.SUFFIXES: .c .cpp .h
|
|
|
|
@@ -23,16 +22,16 @@ libtn.a: $(OBJS)
|
|
ar cru libtn.a $(OBJS)
|
|
|
|
demo/demo: libtn.a demo/demo.cpp demo/myscheme.h
|
|
- (cd demo && make)
|
|
+ (cd demo && ${MAKE})
|
|
|
|
dlgc/dlgc: libtn.a dlgc/dlgc.cpp
|
|
- (cd dlgc && make)
|
|
+ (cd dlgc && ${MAKE})
|
|
|
|
.c.o:
|
|
$(CC) $(CFLAGS) -c $<
|
|
|
|
.cpp.o:
|
|
- $(CPP) $(CFLAGS) -c $<
|
|
+ $(CXX) $(CXXFLAGS) -c $<
|
|
|
|
clean:
|
|
rm -f *~ *.o libtn.a core
|