1998-05-20 14:12:05 +00:00
|
|
|
#
|
|
|
|
# File: makefile.nt
|
|
|
|
# Author: Julian Smart
|
|
|
|
# Created: 1993
|
|
|
|
# Updated:
|
2003-03-29 13:53:55 +00:00
|
|
|
# Copyright:
|
1998-05-20 14:12:05 +00:00
|
|
|
#
|
|
|
|
# "%W% %G%"
|
|
|
|
#
|
|
|
|
# Makefile : Builds utilities for Win95, VC++ 4.0
|
|
|
|
# Use FINAL=1 argument to nmake to build final version with no debugging
|
|
|
|
# info
|
|
|
|
|
|
|
|
# Set WXDIR for your system
|
|
|
|
WXDIR = $(WXWIN)
|
|
|
|
|
|
|
|
THISDIR=$(WXDIR)\utils\nplugin
|
|
|
|
|
1999-01-24 19:13:55 +00:00
|
|
|
!include $(WXDIR)\src\makevc.env
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
DEBUG_FLAGS="/Zi /FR"
|
|
|
|
LINK_DEBUG_FLAGS="/RELEASE"
|
|
|
|
|
|
|
|
clean:
|
|
|
|
cd $(WXDIR)\utils\nplugin\src
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-20 14:12:05 +00:00
|
|
|
cd $(WXDIR)\utils\nplugin\samples\simple
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-20 14:12:05 +00:00
|
|
|
cd $(WXDIR)\utils\nplugin\samples\gui
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-20 14:12:05 +00:00
|
|
|
cd $(WXDIR)\utils\nplugin
|
|
|
|
|