This commit is contained in:
Raspbeguy
2014-04-09 19:52:13 +02:00
parent 37e7572d44
commit 7a2f989f76
4 changed files with 9 additions and 37 deletions

View File

@@ -1,10 +1,7 @@
all : premierTest clean
premierTest : premierTest.o
gcc -Wall premierTest.o -o premierTest `pkg-config --cflags --libs gtk+-3.0 gmodule-2.0`
premierTest.o : premierTest.c
gcc -Wall -c premierTest.c `pkg-config --cflags --libs gtk+-3.0 gmodule-2.0`
premierTest : premierTest.c
gcc -Wall premierTest.c -o premierTest `pkg-config --cflags --libs gtk+-3.0 gmodule-2.0`
clean : premierTest
rm -f *.o