summaryrefslogtreecommitdiff
path: root/gtk-test/Makefile
blob: 703facc46def53f06b36b86d04be6ffc961d8e8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
SHELL=/bin/bash

all:
	htoclean helloworld.h
	cc -O -c helloworld.c `pkg-config --cflags --libs gtk+-3.0` 
	libs=""; for l in $$(pkg-config --libs gtk+-3.0); do libs="$$libs -l $$l"; done ; \
	clm $$libs -l -lglib-2.0 -l helloworld.o helloworld_test -o helloworld_test

run:
	./helloworld_test