############################################################################# # File : Makefile # Package : s2u # Author : Frederic Lepied # Created on : Mon Sep 30 13:20:18 1999 # Purpose : rules to manage the files. ############################################################################# PACKAGE=s2u VERSION := 0.9.2 FILES = Makefile README hostname-post s2u.c s2u.sh \ AUTHORS LICENSE README ChangeLog s2u.conf DEFS = -DDBUS_API_SUBJECT_TO_CHANGE=1 CC = gcc CFLAGS = -O2 -pipe -Wall -Werror INCLUDES = $(shell pkg-config dbus-glib-1 gdk-2.0 gtk+-2.0 --cflags) LIBS = $(shell pkg-config dbus-glib-1 gdk-2.0 gtk+-2.0 --libs) -lnotify COMPILE = $(CC) $(DEFS) $(CFLAGS) all: s2u s2u: s2u.o $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) .c.o: $(COMPILE) $(INCLUDES) -c $< clean: rm -f *.o s2u *~ install: install -d $(DESTDIR)/etc/X11/xinit.d install s2u.sh $(DESTDIR)/etc/X11/xinit.d/s2u install -d $(DESTDIR)/usr/bin install s2u $(DESTDIR)/usr/bin install -d $(DESTDIR)/etc/sysconfig/network-scripts/hostname.d install hostname-post $(DESTDIR)/etc/sysconfig/network-scripts/hostname.d/s2u install -d $(DESTDIR)/etc/dbus-1/system.d install -m 644 s2u.conf $(DESTDIR)/etc/dbus-1/system.d # rules to build a distributable rpm dist: tag git archive --prefix $(PACKAGE)-$(VERSION)/ HEAD | xz -9 > $(PACKAGE)-$(VERSION).tar.xz tag: git tag "$(VERSION)" # Makefile ends here