for USE_SERIALL; included io.h for VC++ in socket.cpp git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@688 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #
 | |
| # File:		makefile.nt
 | |
| # Author:	Stefan Hammes (stefan.hammes@urz.uni-heidelberg.de) / Julian Smart / Petr Houser (1996)
 | |
| # Created:	1995
 | |
| # Updated:=09
 | |
| # 
 | |
| # "%W% %G%"
 | |
| #
 | |
| # Makefile : Builds wxSock library for Windows NT / Win95
 | |
| 
 | |
| EXTRALIBS=wsock32.lib
 | |
| 
 | |
| !include <..\..\src\ntwxwin.mak>
 | |
| 
 | |
| # Change WXDIR or WXWIN to wherever wxWindows is found
 | |
| #WXWIN = $(WX)
 | |
| #WXDIR = $(WXWIN)
 | |
| #WXINC = $(WXDIR)\include\msw
 | |
| 
 | |
| #WXSOCKDIR = $(WXDIR)\contrib\wxsock
 | |
| #WXSOCKINC = $(WXSOCKDIR)
 | |
| #WXSOCKLIB = $(WXSOCKDIR)\lib\wxsock.lib $(WXSOCKDIR)\lib\zlib.lib
 | |
| 
 | |
| #INC=-I$(WXBASEINC) -I$(WXINC) # -I$(WXSOCKINC)
 | |
| #WXLIB = $(WXDIR)\lib\wx.lib
 | |
| #LIBS=$(WXSOCKLIB) wsock32.lib $(LIBS)
 | |
| #LIBS=$(WXSOCKLIB) wsock32.lib $(LIBS)
 | |
| #LIBS=$(WXLIB) $(WXSTRINGLIB) oldnames libw llibcew llibce commdlg shell
 | |
| 
 | |
| all: client.exe server.exe
 | |
| 
 | |
| wx:
 | |
|         cd $(WXDIR)\src\msw
 | |
|         nmake -f makefile.nt
 | |
| 	cd $(ITSYDIR)
 | |
| 
 | |
| client.exe:      $(WXDIR)\src\msw\dummy.obj $(WXLIB) client.obj\
 | |
|                  client.res
 | |
| 	$(link) -out:client.exe $(LINKFLAGS) $(DUMMYOBJ) client.obj \
 | |
|                                 client.res $(LIBS)
 | |
| 
 | |
| server.exe:      $(WXDIR)\src\msw\dummy.obj $(WXLIB) server.obj
 | |
| 	$(link) -out:server.exe $(LINKFLAGS) $(DUMMYOBJ) server.obj $(LIBS)
 | |
| 
 | |
| client.obj:      client.$(SRCSUFF)
 | |
| 	$(cc) $(CPPFLAGS2) /c /Tp $*.$(SRCSUFF)
 | |
| 
 | |
| client.res:      client.rc $(WXDIR)\include\wx\msw\wx.rc
 | |
|         $(rc) -r /i$(WXDIR)\include -fo$@ client.rc
 | |
| 
 | |
| 
 | |
| server.obj:      server.$(SRCSUFF)
 | |
|         $(cc) $(CPPFLAGS2) /c /Tp $*.$(SRCSUFF)
 | |
| 
 | |
| clean:
 | |
| 	-erase *.obj
 | |
| 	-erase *.exe
 | |
| 	-erase *.lib
 | |
| 	-erase *.res
 | |
|         -erase *.sbr
 | |
|         -erase *.pdb
 |