2011-07-19 08:09:03 +00:00
|
|
|
all : tui gui
|
|
|
|
|
|
|
|
.PHONY : tui gui tui-core clean
|
|
|
|
|
|
|
|
tui-core :
|
2011-08-04 12:33:02 +00:00
|
|
|
$(MAKE) -C ../firmware/l0dable usetable.h
|
2011-08-04 12:44:10 +00:00
|
|
|
cd ..; $(SHELL) simulat0r/bin/update-bridge-files.sh
|
2011-08-04 12:47:37 +00:00
|
|
|
$(MAKE) -C firmware
|
2011-07-19 08:09:03 +00:00
|
|
|
$(MAKE) -C simcore
|
|
|
|
$(MAKE) -C tui
|
|
|
|
|
|
|
|
tui : tui-core
|
|
|
|
$(MAKE) -C gui/build clean # workaround for buggy dependency of gui build on libapp
|
|
|
|
|
|
|
|
.IGNORE : tui
|
|
|
|
|
|
|
|
gui : tui gui/build/Makefile
|
|
|
|
$(MAKE) -C gui/build VERBOSE=1
|
|
|
|
|
|
|
|
# bootstrap build directory
|
|
|
|
gui/build/Makefile : tui-core
|
|
|
|
install -d gui/build && cd gui/build && cmake ..
|
|
|
|
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$(MAKE) -C firmware clean
|
|
|
|
$(MAKE) -C tui clean
|
|
|
|
$(MAKE) -C simcore clean
|
|
|
|
$(MAKE) -C gui/build clean # workaround for buggy dependency of gui build on libapp
|