1
0
mirror of https://github.com/moparisthebest/FireTray synced 2024-11-11 11:35:09 -05:00
FireTray/testing/Makefile

18 lines
365 B
Makefile
Raw Normal View History

2011-07-03 18:00:07 -04:00
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