blob: 0d4c1b437792764e70cade7a1ca1431f38aa896a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
diff -ru ./Makefile ../../nt-1.07.1/main/Makefile
--- ./Makefile Wed Nov 3 05:20:49 1999
+++ ../../nt-1.07.1/main/Makefile Thu Nov 25 22:18:21 1999
@@ -1,13 +1,13 @@
-CC = gcc
-CCPLUS = c++
+CC = $(CC)
+CCPLUS = $(CXX)
NLS=-DENABLE_NLS # Remove or comment this line to disable gettext
-DEST=/usr/local
+DEST=$(PREFIX)
LOCALEDIR=$(DEST)/share/locale
-LIBS=-lpthread
-CFLAGS=-Wall -O2 -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS
-GTKLIBS=`gtk-config --libs`
-GTKFLAGS=`gtk-config --cflags`
+GTKLIBS=`gtk12-config --libs`
+GTKFLAGS=`gtk12-config --cflags`
+LIBS=-pthread
+CFLAGS+=-Wall -D_THREAD_SAFE -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS
EXECC=$(CCPLUS) $(CFLAGS) $(GTKFLAGS) $(NLS) -DLOCALE=\"${LOCALEDIR}\"
|