summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1d16f0c941..854b5fb81f 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ V ?= 1
all: llmr
llmr: config.gypi src llmr.gyp
- $(MAKE) -C out BUILDTYPE=Release V=$(V) llmr-osx
+ $(MAKE) -C out BUILDTYPE=Release V=$(V) llmr-x86
# build OS X app with pure make
app: config.gypi src macosx/llmr-app.gyp
@@ -15,6 +15,11 @@ app: config.gypi src macosx/llmr-app.gyp
make -C build/macosx-make V=$(V)
open build/macosx-make/out/Release/llmr.app
+linux: config.gypi src linux/llmr-app.gyp
+ deps/run_gyp linux/llmr-app.gyp -Goutput_dir=./out/ --depth=. --generator-output=./build/linux-make -f make
+ make -C build/linux-make V=$(V)
+ ./build/linux-make/out/Release/llmr.app
+
# build just xcode project for libllmr
xcode: config.gypi llmr.gyp
deps/run_gyp llmr.gyp -Goutput_dir=./out/ --depth=. --generator-output=./ -f xcode
@@ -63,4 +68,4 @@ distclean:
test: all
echo test
-.PHONY: test
+.PHONY: test linux