aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 0d52939..2af9d4d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,11 @@
CFLAGS=-Werror -Wall -ggdb -O3 $(shell pkg-config --cflags nanomsg)
LDFLAGS=$(shell pkg-config --libs nanomsg)
-all: norns_shell
+all: norns_shell norns_load norns_upload
-install:
+install: norns_shell norns_load norns_upload
install -D --mode=755 norns_shell /usr/local/bin/
install -D --mode=755 norns_upload /usr/local/bin/
install -D --mode=755 norns_load /usr/local/bin/
-
-
.PHONY: all install