continue preparation of 0.6
[simple-launcher] / Makefile
index ed3cb60..411d429 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -9,9 +9,9 @@ CXXFLAGS=-Wall -MMD $(GTKCFLAGS) $(DBUSCFLAGS)
 LDFLAGS = -shared
 LIBS = -lstdc++
 
-TARGET=libsimple-launcher.so
+TARGET=simple-launcher.so
 
-all: $(TARGET) test
+all: $(TARGET)
 
 $(TARGET): simple-launcher.o launcher-item.o
        $(LD) $(LDFLAGS) -o $@ $^ $(LIBS)
@@ -25,5 +25,7 @@ clean:
 install: $(TARGET)
        install -d $(DESTDIR)/usr/share/applications/hildon-home
        install -m 0644 simple-launcher.desktop $(DESTDIR)/usr/share/applications/hildon-home
+       install -d $(DESTDIR)/usr/lib/hildon-home
+       install -m 0644 $(TARGET) $(DESTDIR)/usr/lib/hildon-home
 
 -include *.d