forked from AuroraMiddleware/gtk
7033e33822
Fri Mar 27 16:35:00 PST 1998 Shawn T. Amundson <amundson@gtk.org> * Released GTK+ 0.99.9 * examples: added a couple more, fixed some Makefiles
15 lines
303 B
Makefile
15 lines
303 B
Makefile
|
|
CC = gcc
|
|
|
|
ttt_test: tictactoe.o ttt_test.o
|
|
$(CC) `gtk-config --libs` ttt_test.o tictactoe.o -o ttt_test
|
|
|
|
ttt_test.o:
|
|
$(CC) `gtk-config --cflags` -c ttt_test.c -o ttt_test.o
|
|
|
|
tictactoe.o: tictactoe.c tictactoe.h
|
|
$(CC) `gtk-config --cflags` -c tictactoe.c -o tictactoe.o
|
|
|
|
clean:
|
|
rm -f *.o ttt_test
|