forked from AuroraMiddleware/gtk
9 lines
114 B
Makefile
9 lines
114 B
Makefile
|
|
||
|
CC = gcc
|
||
|
|
||
|
text: text.c
|
||
|
$(CC) `gtk-config --cflags` `gtk-config --libs` text.c -o text
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o text
|