c7f49969d6
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1694 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
78 lines
1.5 KiB
Plaintext
78 lines
1.5 KiB
Plaintext
#
|
|
# File: makefile.dos
|
|
# Author: Julian Smart
|
|
# Created: 1993
|
|
# Updated:
|
|
# Copyright: (c) 1993, AIAI, University of Edinburgh
|
|
#
|
|
# "%W% %G%"
|
|
#
|
|
# Makefile : Builds winpng.lib library for Windows 3.1
|
|
|
|
# Change WXDIR or WXWIN to wherever wxWindows is found
|
|
WXDIR = $(WXWIN)
|
|
WXLIB = $(WXDIR)\lib\wx.lib
|
|
WXINC = $(WXDIR)\include
|
|
|
|
WINPNGDIR = $(WXDIR)\src\png
|
|
WINPNGINC = $(WINPNGDIR)
|
|
WINPNGLIB = ..\..\lib\winpng.lib
|
|
|
|
INC = /I..\zlib
|
|
|
|
LIBS=$(WXLIB) $(WINPNGLIB) libw llibcew commdlg ddeml shell # ctl3d
|
|
|
|
# Set this to nothing if your compiler is MS C++ 7
|
|
ZOPTION=
|
|
|
|
!ifndef FINAL
|
|
FINAL=0
|
|
!endif
|
|
|
|
PRECOMP=/YuWX.H
|
|
|
|
!if "$(FINAL)" == "0"
|
|
OPT = /Od
|
|
CPPFLAGS= /AL /W4 /Gt4 /Zi $(ZOPTION) /G2sw $(OPT) /D__WXMSW__ $(INC)
|
|
CFLAGS= /AL /W4 /Gt4 /Zi /G2sw /Od /D__WXMSW__ $(INC)
|
|
LINKFLAGS=/NOD /CO /ONERROR:NOEXE
|
|
!else
|
|
# /Ox for real FINAL version
|
|
OPT = /Ox
|
|
CPPFLAGS= /AL /W4 /Gt4 /Zi /Os /G2sw $(OPT) /D__WXMSW__ $(INC)
|
|
CFLAGS= /AL /W4 /Gt4 /Zi /Os /G2sw /D__WXMSW__ $(INC)
|
|
LINKFLAGS=/NOD /ONERROR:NOEXE
|
|
!endif
|
|
|
|
OBJECTS = png.obj pngread.obj pngrtran.obj pngrutil.obj \
|
|
pngpread.obj pngtrans.obj pngwrite.obj pngwtran.obj pngwutil.obj \
|
|
pngerror.obj pngmem.obj pngwio.obj pngrio.obj pngget.obj pngset.obj
|
|
|
|
all: $(WINPNGLIB)
|
|
|
|
wx:
|
|
cd $(WXDIR)\src
|
|
nmake -f makefile.dos $(WXLIB) FINAL=$(FINAL)
|
|
|
|
$(WINPNGLIB): $(OBJECTS)
|
|
erase $(WINPNGLIB)
|
|
lib /PAGESIZE:128 @<<
|
|
$(WINPNGLIB)
|
|
y
|
|
$(OBJECTS)
|
|
nul
|
|
;
|
|
<<
|
|
|
|
.c.obj:
|
|
cl $(CFLAGS) /c $*.c
|
|
|
|
clean:
|
|
-erase *.obj
|
|
-erase *.exe
|
|
-erase *.lib
|
|
-erase *.sbr
|
|
-erase *.pdb
|
|
|
|
cleanall: clean
|