diff options
Diffstat (limited to 'tests/C/Makefile')
-rw-r--r-- | tests/C/Makefile | 8 |
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 |