1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00
freebsd-ports/audio/maplay/files/patch-Makefile
Mathieu Arnold 9fa9eb9ac7 Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them.

With hat:	portmgr
Sponsored by:	Absolight
2016-07-26 16:51:15 +00:00

28 lines
554 B
Plaintext

--- Makefile.orig 1994-06-23 12:14:46 UTC
+++ Makefile
@@ -27,7 +27,7 @@
#
-CFLAGS = $(COMPILERFLAGS)
+CFLAGS += $(COMPILERFLAGS)
# debugging: -ggdb -DDEBUG
# profiling: -pg (gprof) or -p (prof)
# strip command has to be removed for debugging or profiling
@@ -39,14 +39,11 @@ OBJS = maplay.o ibitstream.o header.o sc
.SUFFIXES: .cc
-install:
+all:
@./configuration.sh
-all: maplay
-
maplay: $(OBJS)
$(COMPILER) $(CFLAGS) $(OBJS) -o $@ $(LIBRARIES) -lm
- -strip $@
.cc.o:
$(COMPILER) -c $(CFLAGS) $(INCLUDEDIRS) $*.cc -o $@