You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
298 B
21 lines
298 B
!include $(NTMAKEENV)\makefile.plt
|
|
|
|
!ifndef O
|
|
O=$(_OBJ_DIR)\$(TARGET_DIRECTORY)
|
|
!endif
|
|
|
|
!if !exist($(O))
|
|
!if [-mkdir $(O)]
|
|
!endif
|
|
!endif
|
|
|
|
all:
|
|
sxid12gen $(O)
|
|
touch mydirs
|
|
|
|
clean: cleanup all
|
|
|
|
cleanup:
|
|
del build*.log build*.err build*.wrn mydirs
|
|
rmdir /q/s $(O)
|
|
mkdir $(O)
|