File: Makefile

package info (click to toggle)
cdebconf 0.74.2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,860 kB
  • ctags: 1,063
  • sloc: ansic: 10,240; sh: 457; makefile: 364; sql: 51; perl: 13
file content (29 lines) | stat: -rw-r--r-- 447 bytes parent folder | download | duplicates (2)
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
# This is just the bootstrapping makefile

all: cdebconf man

globalmakeflags:
	./configure

cdebconf: globalmakeflags
	$(MAKE) -C src

man:
	$(MAKE) -C man

configure: configure.in
	autoconf

install:
	$(MAKE) -C src $@
	$(MAKE) -C man $@

clean: 
	-rm -f *-stamp
	-$(MAKE) -C src $@

distclean: clean
	-rm -f config.status config.log config.cache globalmakeflags 
	-rm -f src/Makefile src/config.h man/Makefile

.PHONY: cdebconf clean distclean