summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorBerke Viktor <berkeviktor@aol.com>2011-08-17 06:47:57 +0200
committerBerke Viktor <berkeviktor@aol.com>2011-08-17 06:47:57 +0200
commit4514516712b57f412de237922d9567e6e389ab20 (patch)
tree98c8adb5abfe0d8305583bfa36c81d263f2f887c /src
parent68473901ec97f092b51d624c1fbe58d6d0054ee5 (diff)
makefile and build script cleanup
Diffstat (limited to 'src')
-rw-r--r--src/makefile.mak24
1 files changed, 15 insertions, 9 deletions
diff --git a/src/makefile.mak b/src/makefile.mak
index 670774ed..cd73b879 100644
--- a/src/makefile.mak
+++ b/src/makefile.mak
@@ -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 $@