Changeset 103316 in vbox for trunk/src/libs/libpng-1.6.42/scripts/makefile.dj2
- Timestamp:
- Feb 12, 2024 3:57:56 PM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 161613
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/libpng-1.6.42/scripts/makefile.dj2
r96425 r103316 1 1 # DJGPP (DOS gcc) makefile for libpng 2 # Copyright (C) 2020-2022 Cosmin Truta 2 3 # Copyright (C) 2002, 2006, 2009-2014 Glenn Randers-Pehrson 3 4 # Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc. … … 7 8 # and license in png.h 8 9 9 # where make install will put libpng.a and png.h10 #prefix=/usr/local11 prefix=.12 INCPATH=$(prefix)/include13 LIBPATH=$(prefix)/lib14 15 10 CC=gcc 16 11 CPPFLAGS=-I../zlib -DPNG_NO_SNPRINTF 17 12 CFLAGS=-O 18 13 LDFLAGS=-L. -L../zlib/ -lpng -lz -lm 19 20 RANLIB=ranlib21 14 22 15 CP=cp … … 27 20 PNGLIBCONF_H_PREBUILT = scripts/pnglibconf.h.prebuilt 28 21 29 OBJS = png.o png set.o pngget.o pngrutil.o pngtrans.o pngwutil.o \30 pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o pngwtran.o \31 pngmem.o pngerror.o pngpread.o22 OBJS = png.o pngerror.o pngget.o pngmem.o pngpread.o \ 23 pngread.o pngrio.o pngrtran.o pngrutil.o pngset.o \ 24 pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o 32 25 33 26 .c.o: … … 40 33 41 34 libpng.a: $(OBJS) 42 ar rc $@ 43 $(RANLIB)$@35 ar rc $@ $(OBJS) 36 ranlib $@ 44 37 45 38 pngtest: pngtest.o libpng.a … … 49 42 test: pngtest 50 43 ./pngtest 44 45 install: 46 @echo "The $@ target is no longer supported by this makefile." 47 @false 48 51 49 clean: 52 50 $(RM_F) *.o libpng.a pngtest pngout.png pnglibconf.h … … 54 52 # DO NOT DELETE THIS LINE -- make depend depends on it. 55 53 56 png.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h54 png.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 57 55 pngerror.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 58 pngrio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h59 pngwio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h60 pngmem.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h61 pngset.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h62 pngget.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h63 pngread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h56 pngrio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 57 pngwio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 58 pngmem.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 59 pngset.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 60 pngget.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 61 pngread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 64 62 pngpread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 65 63 pngrtran.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h … … 70 68 pngwutil.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 71 69 72 pngtest.o: png.h pngconf.h pnglibconf.h70 pngtest.o: png.h pngconf.h pnglibconf.h
Note:
See TracChangeset
for help on using the changeset viewer.