44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
|
|
#
|
|
# This isn't an actual Makefile that builds stuff directly. Rather it invokes other makefiles
|
|
#
|
|
|
|
#include ../masterbuild/platform.mk
|
|
init:
|
|
@echo "===== SL-resources Init ====="
|
|
../utils/git-commit-log.sh > ../sli/src/main/webapp/commits.txt
|
|
../utils/git-commit-log.sh > ../clux/clux/src/main/webapp/commits.txt
|
|
../utils/git-commit-log.sh > ../qaffle/qaffle/src/main/webapp/commits.txt
|
|
../utils/git-commit-log.sh > ../ballot/ballot/src/main/webapp/commits.txt
|
|
../utils/git-commit-log.sh > ../playground/playground/src/main/webapp/commits.txt
|
|
|
|
clean: init
|
|
(cd LocaleStrings; mvn clean)
|
|
# make -f windows.mk clean
|
|
make -f java.mk clean
|
|
make -f robot.mk clean
|
|
make -f js.mk clean
|
|
rm -rf gen
|
|
|
|
test:
|
|
@echo No resource tests
|
|
|
|
LSProg:
|
|
(cd LocaleStrings; mvn install)
|
|
|
|
compile: init LSProg
|
|
# make -f windows.mk compile
|
|
make -f java.mk compile
|
|
make -f robot.mk compile
|
|
make -f js.mk compile
|
|
|
|
install: init LSProg
|
|
# make -f windows.mk install
|
|
make -f java.mk install
|
|
make -f robot.mk install
|
|
make -f js.mk install
|
|
@echo "--- BUILD SUCCESS ---"
|
|
|
|
package:
|
|
@echo "Nothing to package"
|