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