open-card-table/Makefile

11 lines
187 B
Makefile

CC=cc
CLIB=-L/usr/local/lib -llua5.3
INC=-I/usr/local/include
BIN=main
DEBUG=-g
all:
$(CC) $(INC) $(CLIB) main.c -o $(BIN) $(DEBUG)
test:
$(CC) $(INC) $(CLIB) test.c -o test $(DEBUG)