aboutsummaryrefslogtreecommitdiff
path: root/tests/C/Makefile
blob: 28ff1c28d1fe1d762b868b2cd9a6ad3482c47192 (plain)
1
2
3
4
5
6
7
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