ostinato/Makefile
Srivats P. cbf114c29d - Added version/revision info to both client and server UI
- Top level 'make clean' and 'make distclean' now do not stop in case of errors
- 'make distclean' now removes the object_script.* generated files
- Added the Logo to the About dialog and also the application icon
2010-03-24 15:56:11 +00:00

30 lines
522 B
Makefile

release: QMAKE_CONFIG=-config release
all:
$(MAKE) -C rpc
$(MAKE) -C common
$(MAKE) -C server
$(MAKE) -C client
release: qmake all
clean:
-$(MAKE) -C client $@
-$(MAKE) -C server $@
-$(MAKE) -C common $@
-$(MAKE) -C rpc $@
distclean:
-$(MAKE) -C client $@
-$(MAKE) -C server $@
-$(MAKE) -C common $@
-$(MAKE) -C rpc $@
qmake:
cd rpc && qmake $(QMAKE_CONFIG) && cd ..
cd common && qmake $(QMAKE_CONFIG) && cd ..
cd server && qmake $(QMAKE_CONFIG) && cd ..
cd client && qmake $(QMAKE_CONFIG) && cd ..