From 97510bd0ab4f888802702b54ec8569e855fd6f5c Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Sun, 24 Apr 2005 00:09:45 +0000 Subject: [PATCH] repair the depandency to not build systray.so each type we invoke make --- src/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Makefile b/src/Makefile index 00d84e504..b31871004 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,9 +4,8 @@ CFLAGS = `pkg-config --cflags gtk+-2.0 pygtk-2.0` -fpic -I/usr/include/python$(P LDFLAGS = `pkg-config --libs gtk+-2.0 pygtk-2.0` # Build the shared object -#trayicon.so: trayicon.o eggtrayicon.o trayiconmodule.o -all: trayicon.o eggtrayicon.o trayiconmodule.o - $(CC) $(LDFLAGS) -shared $^ -o trayicon.so +trayicon.so: trayicon.o eggtrayicon.o trayiconmodule.o + $(CC) $(LDFLAGS) -shared $^ -o $@ # The path to the GTK+ python types