1999-03-13 14:08:34 -05:00
|
|
|
--- Makefile Sat Mar 13 11:05:57 1999
|
|
|
|
+++ Makefile.mine Sat Mar 13 11:01:58 1999
|
|
|
|
@@ -3,17 +3,18 @@
|
1998-03-20 23:59:59 -05:00
|
|
|
# For conditions of distribution and use, see copyright notice in png.h
|
|
|
|
|
1999-03-13 14:08:34 -05:00
|
|
|
# where make install puts libpng.a and png.h
|
|
|
|
-prefix=/usr/local
|
|
|
|
+prefix=${PREFIX}
|
|
|
|
|
1998-03-20 23:59:59 -05:00
|
|
|
# Where the zlib library and include files are located
|
|
|
|
-#ZLIBLIB=/usr/local/lib
|
|
|
|
-#ZLIBINC=/usr/local/include
|
|
|
|
-ZLIBLIB=../zlib
|
|
|
|
-ZLIBINC=../zlib
|
|
|
|
-
|
|
|
|
-CC=cc
|
1998-09-11 17:11:07 -04:00
|
|
|
-CFLAGS=-I$(ZLIBINC) -O # -g -DPNG_DEBUG=5
|
1998-03-20 23:59:59 -05:00
|
|
|
-LDFLAGS=-L. -L$(ZLIBLIB) -lpng -lz -lm
|
1999-04-04 19:44:50 -04:00
|
|
|
+#ZLIBLIB=/usr/local/lib
|
|
|
|
+#ZLIBINC=/usr/local/include
|
1998-03-20 23:59:59 -05:00
|
|
|
+#ZLIBLIB=../zlib
|
|
|
|
+#ZLIBINC=../zlib
|
|
|
|
+
|
1999-03-14 02:27:12 -05:00
|
|
|
+VER=1.3
|
1998-03-20 23:59:59 -05:00
|
|
|
+#CC=cc
|
1998-09-11 17:11:07 -04:00
|
|
|
+#CFLAGS=-I$(ZLIBINC) -O # -g -DPNG_DEBUG=5
|
|
|
|
+LDFLAGS=-L. -lpng -lz -lm
|
1998-03-20 23:59:59 -05:00
|
|
|
|
|
|
|
#RANLIB=echo
|
|
|
|
RANLIB=ranlib
|
1999-03-13 14:08:34 -05:00
|
|
|
@@ -22,12 +23,27 @@
|
1998-03-20 23:59:59 -05:00
|
|
|
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
|
|
|
|
pngwtran.o pngmem.o pngerror.o pngpread.o
|
|
|
|
|
|
|
|
-all: libpng.a pngtest
|
|
|
|
+.SUFFIXES: .c .so .o
|
|
|
|
+
|
|
|
|
+.c.so:
|
|
|
|
+ ${CC} -fpic -DPIC ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
|
|
|
+
|
|
|
|
+.if (${MACHINE_ARCH} != "alpha")
|
|
|
|
+all: libpng.a libpng.so.${VER}
|
|
|
|
+.else
|
|
|
|
+all: libpng.a
|
|
|
|
+.endif
|
|
|
|
|
|
|
|
libpng.a: $(OBJS)
|
|
|
|
ar rc $@ $(OBJS)
|
|
|
|
$(RANLIB) $@
|
|
|
|
|
|
|
|
+.if (${MACHINE_ARCH} != "alpha")
|
|
|
|
+libpng.so.${VER}: $(OBJS:S/o$/so/g)
|
|
|
|
+ ld -Bshareable -x -assert pure-text -o $@ $(OBJS:S/o$/so/g) -lz
|
|
|
|
+.endif
|
1999-03-13 14:08:34 -05:00
|
|
|
+
|
1998-03-20 23:59:59 -05:00
|
|
|
+
|
|
|
|
pngtest: pngtest.o libpng.a
|
|
|
|
$(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
|
|
|
|
|
1999-03-13 14:08:34 -05:00
|
|
|
@@ -37,12 +53,12 @@
|
1998-03-20 23:59:59 -05:00
|
|
|
install: libpng.a
|
|
|
|
-@mkdir $(prefix)/include
|
|
|
|
-@mkdir $(prefix)/lib
|
|
|
|
- cp png.h $(prefix)/include
|
|
|
|
- cp pngconf.h $(prefix)/include
|
|
|
|
- chmod 644 $(prefix)/include/png.h
|
|
|
|
- chmod 644 $(prefix)/include/pngconf.h
|
|
|
|
- cp libpng.a $(prefix)/lib
|
|
|
|
- chmod 644 $(prefix)/lib/libpng.a
|
1998-09-11 17:11:07 -04:00
|
|
|
+ ${BSD_INSTALL_DATA} png.h pngconf.h $(prefix)/include
|
|
|
|
+ ${BSD_INSTALL_DATA} libpng.a $(prefix)/lib
|
|
|
|
+ ${RANLIB} $(prefix)/lib/libpng.a
|
1998-03-20 23:59:59 -05:00
|
|
|
+.if(${MACHINE_ARCH} != "alpha")
|
1998-09-11 17:11:07 -04:00
|
|
|
+ ${BSD_INSTALL_DATA} libpng.so.${VER} $(prefix)/lib
|
1998-03-20 23:59:59 -05:00
|
|
|
+.endif
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o libpng.a pngtest pngout.png
|