aboutsummaryrefslogtreecommitdiff
path: root/tests/C/Makefile
diff options
context:
space:
mode:
authorBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-16 07:51:01 +0100
committerBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-16 09:33:45 +0100
commitebbcbf8484d74cfccd0b39abf661dbc14fd2dc5d (patch)
tree48c6bc04cbe336a6f0ce44ec3a9a8ffd0ff6fae2 /tests/C/Makefile
parent3a77114269b53fc57ff00342af18e71f97dcf590 (diff)
downloadfengari-ebbcbf8484d74cfccd0b39abf661dbc14fd2dc5d.tar.gz
fengari-ebbcbf8484d74cfccd0b39abf661dbc14fd2dc5d.tar.bz2
fengari-ebbcbf8484d74cfccd0b39abf661dbc14fd2dc5d.zip
lua_pushnumber
Diffstat (limited to 'tests/C/Makefile')
-rw-r--r--tests/C/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/C/Makefile b/tests/C/Makefile
new file mode 100644
index 0000000..28ff1c2
--- /dev/null
+++ b/tests/C/Makefile
@@ -0,0 +1,8 @@
+CC= gcc-6 -std=gnu99
+CFLAGS= -g -Wall -Wextra
+
+LIBS= -lm -llua
+
+all:
+ $(CC) $(CFLAGS) $(LIBS) lua_pushnil.c -o lua_pushnil.out
+ $(CC) $(CFLAGS) $(LIBS) lua_pushnumber.c -o lua_pushnumber.out \ No newline at end of file