forked from Lainports/freebsd-ports
o install several plugins per default; hence, adding audio and graphics as secondary categories o update COMMENT, DESCR and PKGMESSAGE accordingly o style fix: un"echo" Makefile commands o given all this work -> switch over maintainership to submitter PR: 29585 Submitted by: John Merryweather Cooper <jmcoopr@webmail.bmi.net>
41 lines
865 B
Text
41 lines
865 B
Text
--- Makefile Tue Mar 6 16:37:41 2001
|
|
+++ Makefile.new Thu Aug 9 16:46:37 2001
|
|
@@ -1,8 +1,8 @@
|
|
# Where is your Plugin Source Development Kit from Netscape?
|
|
-SDK=/home/hubbe/src/PluginSDK30b5
|
|
+SDK=../PluginSDK30b5
|
|
|
|
# Where is your Xwindows located?
|
|
-X11=/usr/X11/
|
|
+X11=${X11BASE}
|
|
|
|
#
|
|
# For building rpms
|
|
@@ -10,15 +10,15 @@
|
|
|
|
# You may want to change this to /usr/ on
|
|
# some installations.
|
|
-prefix=/usr/local
|
|
+prefix=${PREFIX}
|
|
|
|
#
|
|
#
|
|
RPMDIR=/usr/src/redhat
|
|
|
|
# Choose compiler
|
|
-CC=gcc
|
|
-LD=gcc
|
|
+#CC=gcc
|
|
+#LD=gcc
|
|
BINFORMAT=bin
|
|
|
|
any:
|
|
@@ -91,7 +91,7 @@
|
|
BIN_FILES=plugger.so
|
|
|
|
DEFINES=$(STREAM) -DVERSION=\"$(VERSION)\" # -DDEBUG # -DPLUGIN_TRACE
|
|
-CFLAGS=-O -I$(SDK)/include -I$(X11)/include -DXP_UNIX $(DEFINES) $(XCFLAGS)
|
|
+CFLAGS+=-I$(SDK)/include -I$(X11)/include -DXP_UNIX $(DEFINES) $(XCFLAGS)
|
|
LDFLAGS=$(XLDFLAGS)
|
|
|
|
plugger.so: plugger.o common.o
|