mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
0d731daf26
- Support NOPORTDOCS - Remove USE_GMAKE - Add WWW: line into pkg/DESCR - Add pnm.1 LIB_DEPENDS PR: 19344 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
43 lines
944 B
Plaintext
43 lines
944 B
Plaintext
--- MpegCodec/decoder/Makefile.orig Sun Jul 23 17:03:05 1995
|
|
+++ MpegCodec/decoder/Makefile Wed Jun 28 15:18:39 2000
|
|
@@ -27,9 +27,10 @@
|
|
|
|
AR = ar r
|
|
RM = rm -f
|
|
-CC = gcc
|
|
-CPP = g++
|
|
+#CC = gcc
|
|
+CPP = ${CXX}
|
|
RANLIB = ranlib
|
|
+INCLUDES = -I$(X11BASE)/include
|
|
DEPFILE = Dependencies
|
|
CCOPTIMISATIONS = -O6 -funroll-loops -fomit-frame-pointer
|
|
ANALYSIS = -DANALYSIS
|
|
@@ -43,7 +44,7 @@
|
|
ALL = ar
|
|
|
|
.c.o:
|
|
- $(CC) $(CFLAGS) $(DEFINES) $(EXTRA) -c $<
|
|
+ $(CC) $(CFLAGS) $(INCLUDES) $(DEFINES) $(EXTRA) -c $<
|
|
|
|
all: $(ALL)
|
|
|
|
@@ -58,14 +59,14 @@
|
|
|
|
dep: FORCE
|
|
$(RM) $(DEPFILE)
|
|
- make $(DEPFILE)
|
|
+ $(MAKE) $(DEPFILE)
|
|
|
|
$(DEPFILE):
|
|
- set -e; for i in $(SOURCES); do $(CC) -M $$i >>$(DEPFILE); done
|
|
+ set -e; for i in $(SOURCES); do $(CC) $(INCLUDES) -M $$i >>$(DEPFILE); done
|
|
|
|
#
|
|
# include a dependency file if one exists
|
|
#
|
|
#ifeq ($(DEPFILE),$(wildcard $(DEPFILE)))
|
|
-include $(DEPFILE)
|
|
+#include $(DEPFILE)
|
|
#endif
|