forked from AuroraMiddleware/gtk
c36ca76bb8
* Makefile.am: * examples/*: added the rest of the tutorial examples
9 lines
149 B
Makefile
9 lines
149 B
Makefile
|
|
CC = gcc
|
|
|
|
progressbar: progressbar.c
|
|
$(CC) `gtk-config --cflags` `gtk-config --libs` progressbar.c -o progressbar
|
|
|
|
clean:
|
|
rm -f *.o progressbar
|