mirror of
				https://github.com/KartKrewDev/RingRacers.git
				synced 2025-10-30 08:01:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			333 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			333 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#Add-on Makefile for wxDev-C++ project file
 | 
						|
SRCDIR=src
 | 
						|
ifdef ComSpec
 | 
						|
COMSPEC=$(ComSpec)
 | 
						|
endif
 | 
						|
 | 
						|
all-before:
 | 
						|
ifdef COMSPEC
 | 
						|
	${RM} $(SRCDIR)\comptime.h
 | 
						|
	comptime.bat $(SRCDIR)
 | 
						|
else
 | 
						|
	${RM} $(SRCDIR)/comptime.h
 | 
						|
	./comptime.sh $(SRCDIR)
 | 
						|
endif
 | 
						|
 | 
						|
clean-custom:
 | 
						|
ifdef COMSPEC
 | 
						|
	${RM} $(SRCDIR)\comptime.h
 | 
						|
else
 | 
						|
	${RM} $(SRCDIR)/comptime.h
 | 
						|
endif
 |