aboutsummaryrefslogtreecommitdiff
path: root/tests/C/Makefile
blob: bc153a5d3f8c97f72fbf9de7b0cdcf58cc9cbbdd (plain)
1
2
3
4
5
6
7
8
9
10
11
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
	$(CC) $(CFLAGS) $(LIBS) lua_pushinteger.c -o lua_pushinteger.out
	$(CC) $(CFLAGS) $(LIBS) lua_pushstring.c  -o lua_pushstring.out
	$(CC) $(CFLAGS) $(LIBS) lua_pushboolean.c  -o lua_pushboolean.out