blob: 2b8bd0fe7c96b1050553021ab047d38e2904a100 (
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
37
38
39
40
41
42
43
44
45
46
47
|
*** Makefile.orig Thu Jun 23 21:14:46 1994
--- Makefile Thu Dec 9 06:09:27 1999
***************
*** 27,33 ****
#
! CFLAGS = $(COMPILERFLAGS)
# debugging: -ggdb -DDEBUG
# profiling: -pg (gprof) or -p (prof)
# strip command has to be removed for debugging or profiling
--- 27,33 ----
#
! CFLAGS += $(COMPILERFLAGS)
# debugging: -ggdb -DDEBUG
# profiling: -pg (gprof) or -p (prof)
# strip command has to be removed for debugging or profiling
***************
*** 39,52 ****
.SUFFIXES: .cc
! install:
@./configuration.sh
- all: maplay
-
maplay: $(OBJS)
$(COMPILER) $(CFLAGS) $(OBJS) -o $@ $(LIBRARIES) -lm
- -strip $@
.cc.o:
$(COMPILER) -c $(CFLAGS) $(INCLUDEDIRS) $*.cc -o $@
--- 39,49 ----
.SUFFIXES: .cc
! all:
@./configuration.sh
maplay: $(OBJS)
$(COMPILER) $(CFLAGS) $(OBJS) -o $@ $(LIBRARIES) -lm
.cc.o:
$(COMPILER) -c $(CFLAGS) $(INCLUDEDIRS) $*.cc -o $@
|