makefile and build script cleanup

This commit is contained in:
Berke Viktor
2011-08-17 06:47:57 +02:00
parent 68473901ec
commit 4514516712
5 changed files with 19 additions and 15 deletions

View File

@@ -1,17 +1,23 @@
all:
@cd common
@cd pixmaps
@-$(MAKE) /nologo /s /f makefile.mak $@
@cd ..\common
@-$(MAKE) /nologo /s /f makefile.mak $@
@cd ..\fe-gtk
@-$(MAKE) /nologo /s /f makefile.mak $@
@cd ..\fe-text
@-$(MAKE) /nologo /s /f makefile.mak $@
@cd ..\gtk2-prefs
@-$(MAKE) /nologo /s /f makefile.mak $@
clean:
@del common\*.obj
@del common\xchatcommon.lib
@del fe-gtk\*.obj
@del fe-gtk\xchat.exe
@del fe-gtk\xchat.res
@del fe-text\*.obj
@del fe-text\xchat-text.exe
@del pixmaps\*.h
@cd pixmaps
@-$(MAKE) /nologo /s /f makefile.mak clean $@
@cd ..\common
@-$(MAKE) /nologo /s /f makefile.mak clean $@
@cd ..\fe-gtk
@-$(MAKE) /nologo /s /f makefile.mak clean $@
@cd ..\fe-text
@-$(MAKE) /nologo /s /f makefile.mak clean $@
@cd ..\gtk2-prefs
@-$(MAKE) /nologo /s /f makefile.mak clean $@