Fixed 'clean' rule

svn path=/trunk/; revision=1510
This commit is contained in:
Eric Kohl 2001-01-14 15:27:15 +00:00
parent eda06227b3
commit 36c7b523ee

View file

@ -1,4 +1,4 @@
# $Id: makefile,v 1.10 2000/11/20 19:59:13 ekohl Exp $ # $Id: makefile,v 1.11 2001/01/14 15:27:15 ekohl Exp $
# #
# CSRSS: Client/server runtime subsystem # CSRSS: Client/server runtime subsystem
# #
@ -25,8 +25,13 @@ all: $(TARGET).exe
.phony: all .phony: all
clean: clean:
ifeq ($(DOSCLI),yes)
- $(RM) api\*.o
- $(RM) sbapi\*.o
else
- $(RM) api/*.o - $(RM) api/*.o
- $(RM) sbapi/*.o - $(RM) sbapi/*.o
endif
- $(RM) *.o - $(RM) *.o
- $(RM) $(TARGET).exe - $(RM) $(TARGET).exe
- $(RM) $(TARGET).sym - $(RM) $(TARGET).sym