mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 14:10:30 -04:00
Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight
20 lines
344 B
Text
20 lines
344 B
Text
--- stsoundlib/lzh/Makefile.orig 2016-07-26 16:04:42 UTC
|
|
+++ stsoundlib/lzh/Makefile
|
|
@@ -1,14 +1,14 @@
|
|
-CC = gcc
|
|
+CC ?= gcc
|
|
AR = ar cr
|
|
RM = rm -f
|
|
|
|
-CFLAGS = -Wall
|
|
+CFLAGS ?= -Wall
|
|
|
|
liblzh.a: lzhlib.o
|
|
$(AR) liblzh.a lzhlib.o
|
|
|
|
lzhlib.o: lzhlib.cpp lzh.h
|
|
- $(CC) -c lzhlib.cpp
|
|
+ $(CC) $(CFLAGS) -c lzhlib.cpp
|
|
|
|
clean:
|
|
$(RM) *~ *.o *.a
|