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