Initial version

This commit is contained in:
2016-04-27 20:45:05 +02:00
commit 0c8af95e42
4 changed files with 233 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
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