]> git.saurik.com Git - wxWidgets.git/blame - samples/sockets/makefile.vc
fix for wxExecute(subprocess which produces a lot of output) bug
[wxWidgets.git] / samples / sockets / makefile.vc
CommitLineData
7921cf2b
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!include $(WXWIN)/src/makevc.env
12
13all:
4693b20c
MB
14 nmake -f server.vc FINAL=$(FINAL) WXUSINGDLL=$(WXUSINGDLL)
15 nmake -f client.vc FINAL=$(FINAL) WXUSINGDLL=$(WXUSINGDLL)
7921cf2b
JS
16
17clean:
18 nmake -f server.vc clean
19 nmake -f client.vc clean
20