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