1
0
mirror of https://github.com/moparisthebest/FireTray synced 2024-08-13 15:53:47 -04:00
FireTray/testing/Makefile
2011-07-10 13:41:46 +02:00

18 lines
365 B
Makefile

includes := $(shell pkg-config --libs --cflags gtk+-2.0)
.PHONY: all
all: gtk_icon_example trayicon hide
.PHONY: clean
clean:
rm gtk_icon_example trayicon hide
gtk_icon_example: gtk_icon_example.c
gcc $(includes) -o gtk_icon_example gtk_icon_example.c
trayicon: trayicon.c
gcc $(includes) -o trayicon trayicon.c
hide: hide.c
gcc $(includes) -o hide hide.c