]> git.pld-linux.org Git - projects/setup.git/blob - Makefile
- fixed MAkefile
[projects/setup.git] / Makefile
1 # Very basic and very simple Makefile. Maybe it would be nice to make it
2 # in ac/am.... but I'm too lazy ;)
3
4 VERSION         = 2.4.6
5
6 CC              = gcc
7 OPT_FLAGS       = -O2 -g
8 CFLAGS          = $(OPT_FLAGS) -Wall
9 INSTALL         = install
10 SBINDIR         = /sbin
11 ETCDIR          = /etc
12 PROFILEDIR      = $(ETCDIR)/profile.d
13 ENVDIR          = $(ETCDIR)/env.d
14 #########################################
15
16 BIN_FILES       = joinpasswd
17 DOCS            = ChangeLog
18 ETC_FILES       = filesystems fstab group host.conf hosts motd mtab \
19             netgroup passwd profile protocols resolv.conf securetty \
20             services shells
21 PROFILE_FILES   = tmp-dir.csh tmp-dir.sh
22 ENV_FILES       = EDITOR HISTFILESIZE HOME_ETC NNTPSERVER ORGANIZATION VISUAL
23
24 SOURCES         = joinpasswd.c
25 CLEAN           = $(BIN_FILES) *.o core *.tar.gz *.tar.bz2 *~ *.swp
26
27 #########################################
28 all: joinpasswd
29
30 joinpasswd: joinpasswd.o
31
32 .c.o:
33         $(CC) $(CPPFLAGS) $(CFLAGS) $(CDEFS) -c $< -o $@
34
35 clean:
36         rm -f $(CLEAN)
37         cd etc; rm -f $(CLEAN)
38         cd etc/profile.d; rm -f $(CLEAN)
39
40 install:
41         $(INSTALL) -d $(DESTDIR)/$(SBINDIR)
42         $(INSTALL) -d $(DESTDIR)/$(ETCDIR)
43         $(INSTALL) -d $(DESTDIR)/$(PROFILEDIR)
44         $(INSTALL) -d  $(DESTDIR)/$(ENVDIR)
45         $(INSTALL) $(BIN_FILES) $(DESTDIR)/$(SBINDIR)
46         cd etc; $(INSTALL) $(ETC_FILES) $(DESTDIR)/$(ETCDIR)
47         cd etc/profile.d; $(INSTALL) $(PROFILE_FILES) $(DESTDIR)/$(PROFILEDIR)
48         cd etc/env.d; $(INSTALL) $(ENV_FILES) $(DESTDIR)/$(ENVDIR)
49
50 dist: clean
51         
52         $(INSTALL) -d setup-$(VERSION)/etc/profile.d
53         $(INSTALL) -d setup-$(VERSION)/etc/env.d
54         $(INSTALL) $(DOCS) $(SOURCES) Makefile setup-$(VERSION)
55         for file in $(ETC_FILES); do \
56                 $(INSTALL) etc/$$file setup-$(VERSION)/etc; \
57         done
58         for file in $(PROFILE_FILES); do \
59                 $(INSTALL) etc/profile.d/$$file setup-$(VERSION)/etc/profile.d; \
60         done
61         for file in $(ENV_FILES); do \
62                 $(INSTALL) etc/env.d/$$file setup-$(VERSION)/etc/env.d; \
63         done
64         tar -cvjf setup-$(VERSION).tar.bz2 setup-$(VERSION)
65         rm -rf setup-$(VERSION)
This page took 0.115286 seconds and 4 git commands to generate.