Browse Source

Add a Makefile

Lucas Stadler 9 years ago
parent
commit
8e959cc7d3
1 changed files with 4 additions and 0 deletions
  1. 4 0
      c/ton/Makefile

+ 4 - 0
c/ton/Makefile

@ -0,0 +1,4 @@
1
JSC_CFLAGS = $(shell pkg-config javascriptcoregtk-4.0 --cflags --libs)
2
3
ton: *.c
4
	clang $(JSC_CFLAGS) main.c -o $@