* configure updated * some function added in utilsgtk.cpp (wxSleep, wxKill) * wxThread sample v0.1 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@106 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #
 | |
| # File:		makefile.dos
 | |
| # Author:	Julian Smart
 | |
| # Created:	1993
 | |
| # Updated:	
 | |
| # Copyright:	(c) 1993, AIAI, University of Edinburgh
 | |
| #
 | |
| # "%W% %G%"
 | |
| #
 | |
| # Makefile : Builds thread example (DOS).
 | |
| # Use FINAL=1 argument to nmake to build final version with no debugging
 | |
| # info
 | |
| 
 | |
| WXDIR = $(WXWIN)
 | |
| 
 | |
| !include $(WXDIR)\src\makemsc.env
 | |
| 
 | |
| THISDIR = $(WXDIR)\samples\test
 | |
| 
 | |
| !ifndef FINAL
 | |
| FINAL=0
 | |
| !endif
 | |
| 
 | |
| HEADERS =
 | |
| SOURCES = test.$(SRCSUFF)
 | |
| OBJECTS = test.obj
 | |
| 
 | |
| all:    test.exe
 | |
| 
 | |
| wx:
 | |
|         cd $(WXDIR)\src\msw
 | |
|         nmake -f makefile.dos FINAL=$(FINAL)
 | |
|         cd $(THISDIR)
 | |
| 
 | |
| wxclean:
 | |
|         cd $(WXDIR)\src\msw
 | |
|         nmake -f makefile.dos clean
 | |
|         cd $(THISDIR)
 | |
| 
 | |
| test.exe:      $(WXDIR)\src\msw\dummy.obj $(WXLIB) test.obj test.def test.res
 | |
|         link $(LINKFLAGS) @<<
 | |
| test.obj $(WXDIR)\src\msw\dummy.obj,
 | |
| test,
 | |
| NUL,
 | |
| $(LIBS),
 | |
| test.def
 | |
| ;
 | |
| <<
 | |
|         rc -K test.res
 | |
| 
 | |
| test.obj:      test.$(SRCSUFF)
 | |
|         cl @<<
 | |
| $(CPPFLAGS) /c /Tp $*.$(SRCSUFF)
 | |
| <<
 | |
| 
 | |
| test.res :      test.rc $(WXDIR)\include\wx\msw\wx.rc
 | |
|     rc -r /i$(WXDIR)\include test
 | |
| 
 | |
| clean:
 | |
|         -erase *.obj
 | |
|         -erase *.exe
 | |
|         -erase *.res
 | |
|         -erase *.map
 | |
|         -erase *.sbr
 | |
|         -erase *.pdb
 |