Skip to content
Snippets Groups Projects
Commit 9336e8dc authored by Vincent Hanquez's avatar Vincent Hanquez
Browse files

add a "all" target to compile all necessary stuff in src/

parent 8465b76b
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,8 @@ PYTHONVER = `python -V 2>&1 | awk '{print $$2}' | cut -f1,2 -d.`
CFLAGS = `pkg-config --cflags gtk+-2.0 pygtk-2.0` -fpic -I/usr/include/python$(PYTHONVER) -I.
LDFLAGS = `pkg-config --libs gtk+-2.0 pygtk-2.0`
all: trayicon.so
# Build the shared object
trayicon.so: trayicon.o eggtrayicon.o trayiconmodule.o
$(CC) $(LDFLAGS) -shared $^ -o $@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment