diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-11-02 15:27:27 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-11-02 15:27:27 +0000 |
commit | ca21695fe9fe8d5db74ae77be9700ceb3fe29180 (patch) | |
tree | d954db94ab073f1ccfb02254080769d05c6d547a /examples/tictactoe | |
parent | bc0d15aba7f5c8b741acca9d19546a23eaef11d0 (diff) | |
download | gtk+-ca21695fe9fe8d5db74ae77be9700ceb3fe29180.tar.gz |
Convert to use pkg-config rather than gtk-config. (#53375, Skip Montanaro)
Fri Nov 2 10:21:03 2001 Owen Taylor <otaylor@redhat.com>
* examples/**/Makefile.am: Convert to use pkg-config
rather than gtk-config. (#53375, Skip Montanaro)
Diffstat (limited to 'examples/tictactoe')
-rw-r--r-- | examples/tictactoe/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/tictactoe/Makefile b/examples/tictactoe/Makefile index 0dab1ea755..5fe6eb3565 100644 --- a/examples/tictactoe/Makefile +++ b/examples/tictactoe/Makefile @@ -2,13 +2,13 @@ CC = gcc ttt_test: tictactoe.o ttt_test.o - $(CC) ttt_test.o tictactoe.o -o ttt_test `gtk-config --libs` + $(CC) ttt_test.o tictactoe.o -o ttt_test `pkg-config --libs gtk+-2.0` ttt_test.o: ttt_test.c tictactoe.h - $(CC) `gtk-config --cflags` -c ttt_test.c -o ttt_test.o + $(CC) `pkg-config --cflags gtk+-2.0` -c ttt_test.c -o ttt_test.o tictactoe.o: tictactoe.c tictactoe.h - $(CC) `gtk-config --cflags` -c tictactoe.c -o tictactoe.o + $(CC) `pkg-config --cflags gtk+-2.0` -c tictactoe.c -o tictactoe.o clean: rm -f *.o ttt_test |