0
0
Fork 0
mirror of https://git.do.srb2.org/KartKrew/Kart-Public.git synced 2025-01-15 06:01:09 +00:00
Kart-Public/comptime.mk
2014-03-15 13:11:35 -04:00

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