Ticket #487: Makefile.config.darwin
File Makefile.config.darwin, 609 bytes (added by fenner@…, 21 years ago) |
---|
Line | |
---|---|
1 | # |
2 | # Mac OS X (Darwin) configuration |
3 | # |
4 | DEFAULT_TARGET = nonmerge |
5 | NETPBMLIBTYPE = dylib |
6 | NETPBMLIBSUFFIX = dylib |
7 | STATICLIB_TOO = n |
8 | NETPBM_RUNTIME_PATH = @PREFIX@/lib |
9 | CC = cc -no-cpp-precomp |
10 | CFLAGS = -O3 -I@PREFIX@/include |
11 | CFLAGS_SHLIB = -fno-common |
12 | LDFLAGS = -L@PREFIX@/lib |
13 | LDSHLIB = -dynamiclib \ |
14 | -install_name $(NETPBM_RUNTIME_PATH)/libnetpbm.dylib \ |
15 | -compatibility_version $(MAJ) \ |
16 | -current_version $(MAJ).$(MIN) |
17 | TIFFLIB = -ltiff |
18 | JPEGLIB = -ljpeg |
19 | PNGLIB = -lpng |
20 | ZLIB = -lz |