File: Makefile

package info (click to toggle)
fatattr 1.0.1-9
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 316 kB
  • sloc: sh: 152; ansic: 122; makefile: 55
file content (82 lines) | stat: -rw-r--r-- 1,819 bytes parent folder | download | duplicates (6)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
## -----------------------------------------------------------------------
##   
##   Copyright 2005-2009 H. Peter Anvin - All Rights Reserved
##
##   This program is free software; you can redistribute it and/or modify
##   it under the terms of the GNU General Public License as published by
##   the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA 02139,
##   USA; either version 2 of the License, or (at your option) any later
##   version; incorporated herein by reference.
##
## -----------------------------------------------------------------------

##
## Makefile for fatattr
##

-include MCONFIG
include MRULES

PROGS     = fatattr
MAN1PAGES = fatattr.1

OBJS = 	fatattr.o

all: $(PROGS)

spec: fatattr.spec

clean:
	rm -f *.o *.i *.s version.h $(PROGS)

distclean: clean
	rm -f MCONFIG config.status config.log config.h *~ \#*
	rm -f core *.orig *.rej
	rm -rf *.cache

release:
	$(MAKE) configure
	$(MAKE) spec
	$(MAKE) distclean

fatattr: $(OBJS)
	$(CC) $(LDFLAGS) -o fatattr $(OBJS) $(LIBS)

spotless: distclean
	rm -f configure config.h.in fatattr.spec

install: all
	mkdir -p $(INSTALLROOT)$(bindir)
	$(INSTALL_PROGRAM) $(PROGS) $(INSTALLROOT)$(bindir)
	mkdir -p $(INSTALLROOT)$(mandir)/man1
	$(INSTALL_DATA) $(MAN1PAGES) $(INSTALLROOT)$(mandir)/man1

config:	MCONFIG

MCONFIG: configure MCONFIG.in config.h.in
	./configure

config.h: MCONFIG
	: Generated by side effect

config.h.in: configure.in
	rm -f config.h.in
	autoheader

configure: configure.in aclocal.m4
	autoconf
	rm -f MCONFIG config.cache config.log config.status config.h

dist: config spec
	$(MAKE) distclean

#
# Version header
#
VERSION = $(shell cat version)

version.h: version
	echo "#define FATATTR_VERSION \"$(VERSION)\"" > version.h

fatattr.spec: fatattr.spec.in version
	sed -e 's/@@VERSION@@/$(VERSION)/g' < $< > $@