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