gtk2/examples/entry/Makefile

9 lines
119 B
Makefile
Raw Normal View History

CC = gcc
entry: entry.c
$(CC) `gtk-config --cflags` `gtk-config --libs` entry.c -o entry
clean:
rm -f *.o entry