1998-05-20 10:12:05 -04:00
|
|
|
#
|
|
|
|
# File: makefile.nt
|
|
|
|
# Author: Julian Smart
|
|
|
|
# Created: 1997
|
|
|
|
# Updated:
|
|
|
|
# Copyright: (c) 1997, Julian Smart
|
|
|
|
#
|
|
|
|
# "%W% %G%"
|
|
|
|
#
|
|
|
|
# Makefile : Builds wxWindows library wx.lib for VC++ (32-bit)
|
|
|
|
# Arguments:
|
|
|
|
#
|
|
|
|
# FINAL=1 argument to nmake to build version with no debugging info.
|
|
|
|
# dll builds a library (wxdll.lib) suitable for creating DLLs
|
|
|
|
# * Note that the dll target is experimental - see docs/dll.txt.
|
|
|
|
#
|
1999-01-24 14:13:55 -05:00
|
|
|
!include <makevc.env>
|
1998-05-20 10:12:05 -04:00
|
|
|
|
|
|
|
THISDIR=$(WXWIN)\src
|
|
|
|
|
|
|
|
all:
|
|
|
|
cd msw
|
1999-01-27 05:01:14 -05:00
|
|
|
nmake -f makefile.vc
|
1998-05-20 10:12:05 -04:00
|
|
|
cd $(THISDIR)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
cd msw
|
1999-01-27 05:01:14 -05:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-20 10:12:05 -04:00
|
|
|
cd $(THISDIR)
|
|
|
|
|
|
|
|
cleanall:
|
|
|
|
cd msw
|
1999-01-27 05:01:14 -05:00
|
|
|
nmake -f makefile.vc cleanall
|
1998-05-20 10:12:05 -04:00
|
|
|
cd $(THISDIR)
|
|
|
|
|