mirror of https://github.com/tongzx/nt5src
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.
20 lines
508 B
20 lines
508 B
makedir:
|
|
!if "$(OBJ)" != ""
|
|
@-if not exist $(OBJ) md $(OBJ)
|
|
!endif
|
|
!if "$(OBJINTL)" != ""
|
|
@-if not exist $(OBJINTL) md $(OBJINTL)
|
|
!endif
|
|
|
|
clean: cleanup all
|
|
|
|
cleanup:
|
|
-del *.bin *.sys *.obj *.sym *.map *.exe *.exc *.exs *.cl* *.ctl *.com 2>nul
|
|
!if "$(OBJ)" != ""
|
|
if exist $(OBJ)\*.obj del $(OBJ)\*.obj
|
|
!endif
|
|
!if "$(OBJINTL)" != ""
|
|
if exist $(OBJINTL)\*.obj del $(OBJINTL)\*.obj
|
|
if exist $(OBJINTL)\*.cl* del $(OBJINTL)\*.cl*
|
|
if exist $(OBJINTL)\*.ctl del $(OBJINTL)\*.ctl
|
|
!endif
|