X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=Makefile;h=b9c8c6f4b20e8e34a51d0aae064a9eb8a0008b74;hb=refs%2Fheads%2Fmaster;hp=ed3cb60fb57e9a126dd93a65f96e60b62d3566ed;hpb=5f4268280d31945daa996a5c66f35ceb4aff8598;p=simple-launcher diff --git a/Makefile b/Makefile index ed3cb60..b9c8c6f 100644 --- a/Makefile +++ b/Makefile @@ -1,29 +1,41 @@ GTKCFLAGS := $(shell pkg-config gtk+-2.0 --cflags) GTKLIBS := $(shell pkg-config gtk+-2.0 --libs) +GCONFCFLAGS := $(shell pkg-config gconf-2.0 --cflags) +GCONFLIBS := $(shell pkg-config gconf-2.0 --libs) + DBUSCFLAGS := $(shell pkg-config dbus-1 --cflags) DBUSLIBS := $(shell pkg-config dbus-1 --libs) -CXXFLAGS=-Wall -MMD $(GTKCFLAGS) $(DBUSCFLAGS) +CXXFLAGS=-Wall -g -MMD $(GTKCFLAGS) $(DBUSCFLAGS) $(GCONFCFLAGS) #LDFLAGS = -module -avoid-version LDFLAGS = -shared LIBS = -lstdc++ -TARGET=libsimple-launcher.so +TARGET=simple-launcher.so +DESKTOP_FILE=simple-launcher.desktop +BACKUP_CONF=simple-launcher.backup -all: $(TARGET) test +all: $(TARGET) -$(TARGET): simple-launcher.o launcher-item.o +$(TARGET): simple-launcher.o launchable-item.o launcher-item.o settings-page-items.o utils.o settings-dialog.o gconf-wrapper.o dialog-entry.o settings-page-entries.o $(LD) $(LDFLAGS) -o $@ $^ $(LIBS) -test: test.o launcher-item.o - g++ -o $@ $^ $(GTKLIBS) $(DBUSLIBS) $(LIBS) -losso - clean: - rm -f *.d *.o $(TARGET) test + rm -f *.d *.o $(TARGET) install: $(TARGET) install -d $(DESTDIR)/usr/share/applications/hildon-home - install -m 0644 simple-launcher.desktop $(DESTDIR)/usr/share/applications/hildon-home + install -m 0644 $(DESKTOP_FILE) $(DESTDIR)/usr/share/applications/hildon-home + install -d $(DESTDIR)/usr/lib/hildon-home + install -m 0644 $(TARGET) $(DESTDIR)/usr/lib/hildon-home + install -d $(DESTDIR)/etc/osso-backup/applications + install -m 0644 $(BACKUP_CONF) $(DESTDIR)/etc/osso-backup/applications/simple-launcher.conf + +pclean: + fakeroot debian/rules clean + +package: + dpkg-buildpackage -rfakeroot -uc -b -include *.d