]> git.saurik.com Git - wxWidgets.git/blame - samples/minimal/makefile.vc
Corrected ViewStart problem
[wxWidgets.git] / samples / minimal / makefile.vc
CommitLineData
48d1144b
JS
1#
2# File: makefile.vc
3# Author: Julian Smart
4# Created: 1999
5# Updated:
6# Copyright: (c) Julian Smart
7#
8# Makefile : Builds sample (VC++, WIN32)
9# Use FINAL=1 argument to nmake to build final version with no debug info.
10
11# Set WXDIR for your system
0e528b99 12WXDIR = $(WXWIN)
48d1144b
JS
13
14PROGRAM=minimal
15OBJECTS = $(PROGRAM).obj
16
17!include $(WXDIR)\src\makeprog.vc
18
7fee680b
JS
19# For broken VC++ 4
20noopt:
21 cl @<<
22$(CPPFLAGS2) /Od /c /Tp $(PROGRAM).cpp
23<<
24