freebsd-ports/audio/maplay/files/patch-ab
Steve Price 20fe79de4b * Fixed patches not to change one file twice
* Rearrenged build target

PR:		15378
Submitted by:	KATO Tsuguru <tkato@prontomail.ne.jp>
1999-12-23 18:44:10 +00:00

47 lines
952 B
Text

*** 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 $@