8 lines
115 B
Makefile
8 lines
115 B
Makefile
|
|
||
|
CC = g++
|
||
|
CFLAGS = -std=c++11 -Wall -I../src/ -L../
|
||
|
|
||
|
all:
|
||
|
$(CC) $(CFLAGS) example.cpp -o example -lsqlparser
|
||
|
|