File: Makefile

package info (click to toggle)
ifd-gempc 1.0.1-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,132 kB
  • ctags: 309
  • sloc: ansic: 2,959; sh: 278; makefile: 209
file content (27 lines) | stat: -rw-r--r-- 517 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
# $Id: Makefile,v 1.8 2003/04/12 20:03:43 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