open-card-table/Makefile

11 lines
187 B
Makefile
Raw Normal View History

2023-01-06 19:12:24 -05:00
CC=cc
CLIB=-L/usr/local/lib -llua5.3
2023-01-06 19:12:24 -05:00
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)