aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorflepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>2004-08-01 22:59:49 +0000
committerflepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>2004-08-01 22:59:49 +0000
commitb6169329d5466202bc805d422545771ad5312a93 (patch)
treedddb43ffe37f9775b28e6f88318db1af8a73cbed /Makefile
parent15d97ce77496d12b69361b218edd5ca089d83fe9 (diff)
downloads2u-b6169329d5466202bc805d422545771ad5312a93.tar
s2u-b6169329d5466202bc805d422545771ad5312a93.tar.gz
s2u-b6169329d5466202bc805d422545771ad5312a93.tar.bz2
s2u-b6169329d5466202bc805d422545771ad5312a93.tar.xz
s2u-b6169329d5466202bc805d422545771ad5312a93.zip
Initial revision
git-svn-id: svn+ssh://svn.mandriva.com/svn/soft/s2u/trunk@179769 99302b65-d5f7-0310-b3dd-f8cd6f4e3d94
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile82
1 files changed, 82 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..aed4efc
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,82 @@
+#############################################################################
+# File : Makefile
+# Package : s2u
+# Author : Frederic Lepied
+# Created on : Mon Sep 30 13:20:18 1999
+# Version : $Id$
+# Purpose : rules to manage the files.
+#############################################################################
+
+PACKAGE=s2u
+VERSION:=$(shell rpm -q --qf %{VERSION} --specfile $(PACKAGE).spec)
+RELEASE:=$(shell rpm -q --qf %{RELEASE} --specfile $(PACKAGE).spec)
+TAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__')
+
+FILES = Makefile README hostname-post s2u.c s2u.sh s2u.spec \
+ LICENSE README ChangeLog
+
+DEFS = -DDBUS_API_SUBJECT_TO_CHANGE=1
+CC = gcc
+CFLAGS = -Os -pipe -Wall -fomit-frame-pointer -fno-strict-aliasing
+INCLUDES = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include
+LDFLAGS = -ldbus-glib-1 -lglib-2.0 -ldbus-1
+
+COMPILE = $(CC) $(DEFS) $(CFLAGS)
+
+s2u: s2u.o
+ $(CC) $(LDFLAGS) -o $@ $^
+
+.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
+ install -d $(DESTDIR)/usr/bin
+ install s2u $(DESTDIR)/usr/bin
+ install -d $(DESTDIR)/etc/sysconfig/network-script/hostname.d
+ install hostname-post $(DESTDIR)/etc/sysconfig/network-script/hostname.d/s2u
+# rules to build a test rpm
+
+localrpm: localdist buildrpm
+
+localdist: cleandist dir localcopy tar
+
+cleandist:
+ rm -rf $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION).tar.bz2
+
+dir:
+ mkdir $(PACKAGE)-$(VERSION)
+
+localcopy:
+ tar c $(FILES) | tar x -C $(PACKAGE)-$(VERSION)
+
+tar:
+ tar cvf $(PACKAGE)-$(VERSION).tar $(PACKAGE)-$(VERSION)
+ bzip2 -9vf $(PACKAGE)-$(VERSION).tar
+ rm -rf $(PACKAGE)-$(VERSION)
+
+buildrpm:
+ rpm -ta $(PACKAGE)-$(VERSION).tar.bz2
+
+# rules to build a distributable rpm
+
+rpm: changelog cvstag dist buildrpm
+
+dist: cleandist dir export tar
+
+export:
+ cvs export -d $(PACKAGE)-$(VERSION) -r $(TAG) $(PACKAGE)
+
+cvstag:
+ cvs tag $(CVSTAGOPT) $(TAG)
+
+changelog: ../common/username
+ cvs2cl -U ../common/username -I ChangeLog
+ rm -f ChangeLog.bak
+ cvs commit -m "Generated by cvs2cl the `date '+%d_%b'`" ChangeLog
+
+# Makefile ends here