File: Makefile

package info (click to toggle)
ifd-gempc 1.0.7-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 596 kB
  • sloc: ansic: 3,138; sh: 279; makefile: 147
file content (27 lines) | stat: -rw-r--r-- 517 bytes parent folder | download | duplicates (8)
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
# $Id: Makefile,v 1.9 2003-05-03 07:43:49 rousseau Exp $

all:
	$(MAKE) -C common clean
	$(MAKE) -C GemPC410
	$(MAKE) -C common clean
	$(MAKE) -C GemPC430

clean:
	$(MAKE) -C GemPC410 clean
	$(MAKE) -C GemPC430 clean
	$(MAKE) -C common clean

distclean:
	$(MAKE) -C GemPC410 distclean
	$(MAKE) -C GemPC430 distclean
	$(MAKE) -C common distclean
	rm -f config.log

install:
	$(MAKE) -C common clean
	$(MAKE) -C GemPC410 install
	$(MAKE) -C common clean
	$(MAKE) -C GemPC430 install

.PHONY: all clean distclean ctags