* 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
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#************************************************************************
 | 
						|
# Makefile for MINIMAL under VMS
 | 
						|
# by Stefan Hammes
 | 
						|
# (incomplete) update history:
 | 
						|
# 11.04.95
 | 
						|
#************************************************************************
 | 
						|
 | 
						|
#************************************************************************
 | 
						|
# Definition section
 | 
						|
# (cave: definitions and includes must begin with ',')
 | 
						|
#************************************************************************
 | 
						|
 | 
						|
APPOPTS = 
 | 
						|
APPDEFS = 
 | 
						|
APPINCS = 
 | 
						|
 | 
						|
#************************************************************************
 | 
						|
# Module section
 | 
						|
#************************************************************************
 | 
						|
 | 
						|
# Name of main module
 | 
						|
MAIN = test
 | 
						|
 | 
						|
# Object modules of the application.
 | 
						|
OBJS = test.obj
 | 
						|
OBJLIST =test.obj
 | 
						|
 | 
						|
.include [--.src]makevms.env
 | 
						|
 | 
						|
# main dependency
 | 
						|
$(MAIN).exe : $(OBJS)
 | 
						|
    $(LINK) $(LINKFLAGS) /exec=$(MAIN).exe $(OBJLIST),$(WXLIB)/lib,$(OPTSFILE)/option
 | 
						|
    - purge *.exe
 | 
						|
 | 
						|
#************************************************************************
 | 
						|
# Header file depedencies following
 | 
						|
#************************************************************************
 | 
						|
 |