gtk/examples/packer/Makefile

9 lines
121 B
Makefile
Raw Normal View History

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