wxWidgets/samples/wxsocket/makefile.vc
1999-02-09 18:19:15 +00:00

21 lines
405 B
Plaintext

#
# File: makefile.vc
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart
#
# Makefile : Builds sample (VC++, WIN32)
# Use FINAL=1 argument to nmake to build final version with no debug info.
!include $(WXWIN)/src/makevc.env
all:
nmake -f server.vc FINAL=$(FINAL)
nmake -f client.vc FINAL=$(FINAL)
clean:
nmake -f server.vc clean
nmake -f client.vc clean