blob: 8a3da9b735a2aaf58c9bd04b1714b45df32ccc04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#############################################################################
# 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
|