1999-11-26 22:25:13 +00:00
|
|
|
*** Makefile.orig Thu Jun 23 21:14:46 1994
|
1999-12-23 18:44:10 +00:00
|
|
|
--- Makefile Thu Dec 9 06:09:27 1999
|
1999-11-26 22:25:13 +00:00
|
|
|
***************
|
|
|
|
*** 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
|
1995-02-14 08:32:41 +00:00
|
|
|
***************
|
1999-12-23 18:44:10 +00:00
|
|
|
*** 39,52 ****
|
1995-02-14 08:32:41 +00:00
|
|
|
|
|
|
|
.SUFFIXES: .cc
|
|
|
|
|
|
|
|
! install:
|
|
|
|
@./configuration.sh
|
|
|
|
|
1999-12-23 18:44:10 +00:00
|
|
|
- all: maplay
|
|
|
|
-
|
|
|
|
maplay: $(OBJS)
|
|
|
|
$(COMPILER) $(CFLAGS) $(OBJS) -o $@ $(LIBRARIES) -lm
|
|
|
|
- -strip $@
|
|
|
|
|
|
|
|
.cc.o:
|
|
|
|
$(COMPILER) -c $(CFLAGS) $(INCLUDEDIRS) $*.cc -o $@
|
|
|
|
--- 39,49 ----
|
1995-02-14 08:32:41 +00:00
|
|
|
|
|
|
|
.SUFFIXES: .cc
|
|
|
|
|
1999-12-23 18:44:10 +00:00
|
|
|
! all:
|
1995-02-14 08:32:41 +00:00
|
|
|
@./configuration.sh
|
|
|
|
|
1999-12-23 18:44:10 +00:00
|
|
|
maplay: $(OBJS)
|
|
|
|
$(COMPILER) $(CFLAGS) $(OBJS) -o $@ $(LIBRARIES) -lm
|
|
|
|
|
|
|
|
.cc.o:
|
|
|
|
$(COMPILER) -c $(CFLAGS) $(INCLUDEDIRS) $*.cc -o $@
|