mysql-remote-console/Makefile

15 lines
218 B
Makefile
Raw Permalink Normal View History

2016-04-27 18:45:05 +00:00
CFLAGS = -O2 -Wall `pkg-config --cflags --libs gtk+-2.0`
EXE = mysql_console
all:
$(CC) -o $(EXE) $(CFLAGS) main.c
debug:
$(CC) -DDEBUG -o $(EXE) $(CFLAGS) -g main.c
clean:
rm -f $(EXE)
.PHONY: clean all debug