You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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 |
|
|
|
|