1
0
mirror of https://github.com/moparisthebest/FireTray synced 2024-12-24 06:48:48 -05:00
FireTray/testing/Makefile

22 lines
441 B
Makefile
Raw Normal View History

2011-07-03 18:00:07 -04:00
includes := $(shell pkg-config --libs --cflags gtk+-2.0)
executables := gtk_icon_example trayicon hide xtypes
2011-07-03 18:00:07 -04:00
.PHONY: all
all: $(executables)
.PHONY: clean
clean:
rm $(executables)
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
xtypes: xtypes.c
gcc $(includes) -o xtypes xtypes.c