summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSebastian Reichel <sre@ring0.de>2013-06-23 15:05:22 +0200
committerSebastian Reichel <sre@ring0.de>2013-06-23 15:05:22 +0200
commit6ef8b210e963b1e0254d79a0c6d8d626319d25d6 (patch)
tree0bf5f6fcc9299358caec9caf37498182a52a6e86 /Makefile
parent90c9a148a94ed92c93d42110e45d8787f7ac1eff (diff)
downloadlp5523-assembler-master.tar.bz2
call valac instead of valac-0.14HEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 5ff359d..80632fa 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,15 @@
all: lp5523-as
test: lp5523-test
- @./$<
+ ./$<
lp5523-as: lp5523.vala assembler.vala
- @valac-0.14 --enable-experimental -o $@ $^
+ valac --enable-experimental -o $@ $^
lp5523-test: lp5523.vala test.vala
- @valac-0.14 --enable-experimental -o $@ $^
+ valac --enable-experimental -o $@ $^
clean:
- @rm -f lp5523-as lp5523-test
+ rm -f lp5523-as lp5523-test
.PHONY: all test clean