]>
Commit | Line | Data |
---|---|---|
1 | # | |
2 | # File: makefile.b32 | |
3 | # Author: Julian Smart | |
4 | # Created: 1993 | |
5 | # Updated: | |
6 | # Copyright: | |
7 | # | |
8 | # "%W% %G%" | |
9 | # | |
10 | # Makefile : Builds PNG library (BC++ 32-bit) | |
11 | ||
12 | # WXWIN and BCCDIR are set by parent make | |
13 | ||
14 | LIBTARGET =..\..\lib\winpng.lib | |
15 | ||
16 | OBJECTS = png.obj pngread.obj pngrtran.obj pngrutil.obj \ | |
17 | pngpread.obj pngtrans.obj pngwrite.obj pngwtran.obj pngwutil.obj \ | |
18 | pngerror.obj pngmem.obj pngwio.obj pngrio.obj pngget.obj pngset.obj | |
19 | ||
20 | # Precompiled headers seem to interfere with correct compilation | |
21 | # of png library, so switch them off | |
22 | EXTRACPPFLAGS=-H- | |
23 | ||
24 | !include $(WXWIN)\src\makelib.b32 | |
25 |