diff options
author | 2015-03-26 09:00:39 +0100 | |
---|---|---|
committer | 2015-03-26 09:00:39 +0100 | |
commit | f76d59c41df1c14a6abb710414809ae1915bda14 (patch) | |
tree | ed92194004cbc4806f036721a719d757e1ef63c2 /src/mess/tools/tools.mak | |
parent | 522a6d8c30082725de73d6af310004726b307f93 (diff) |
Moved build system to GENie [Miodrag Milanovic]
make TARGET=mess -j19
will generate all needed files and build MESS, while developing you can use
make TARGET=mess COMPILE=1 -j19
to prevent rebuilding of make files.
Build system have automatic generate of dependencies so will do incremental builds fine.
make clean
will remove all generated files/projects and obj files
Diffstat (limited to 'src/mess/tools/tools.mak')
-rw-r--r-- | src/mess/tools/tools.mak | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/mess/tools/tools.mak b/src/mess/tools/tools.mak deleted file mode 100644 index f7b8a6c2f1a..00000000000 --- a/src/mess/tools/tools.mak +++ /dev/null @@ -1,23 +0,0 @@ -########################################################################### -# -# tools.mak -# -# MESS tools makefile -# -########################################################################### - - -# add include path to tools directory -INCPATH += -I$(MESSSRC)/tools - -# tools object directory -MESS_TOOLS = $(MESSOBJ)/tools - -include $(MESSSRC)/tools/imgtool/imgtool.mak -TOOLS += $(IMGTOOL) - -include $(MESSSRC)/tools/castool/castool.mak -TOOLS += $(CASTOOL) - -include $(MESSSRC)/tools/floptool/floptool.mak -TOOLS += $(FLOPTOOL) |