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)