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