blob: 94ce11ef4926a7857a42ecc70282727306619d6a (
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
25
26
27
28
29
30
31
32
33
34
35
36
|
*** Makefile.Linux.orig Thu Jul 18 04:10:55 1996
--- Makefile.Linux Wed Sep 17 03:51:48 1997
***************
*** 1,7 ****
### compiler section
CXX = gcc -Wall -fstrength-reduce -fpcc-struct-return
! CXXFLAGS = -g -DUSE_MIT_SHM
### default file to be used, when no options are set
--- 1,7 ----
### compiler section
CXX = gcc -Wall -fstrength-reduce -fpcc-struct-return
! CXXFLAGS += -DUSE_MIT_SHM -I${X_INCLUDE}
### default file to be used, when no options are set
*************** LDFLAGS = -L$(XLIB_DIR)
*** 20,26 ****
.SUFFIXES: .C .o
.C.o:
! $(CXX) -I$(X_INCLUDE) $(CXXFLAGS) -c $<
LD = $(CXX)
--- 20,26 ----
.SUFFIXES: .C .o
.C.o:
! $(CXX) $(CXXFLAGS) -c $<
LD = $(CXX)
|