File: Makefile

package info (click to toggle)
wnn 4.2-4
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 13,680 kB
  • ctags: 8,999
  • sloc: ansic: 85,573; makefile: 210; sh: 119; cpp: 87
file content (20 lines) | stat: -rw-r--r-- 408 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
#! /usr/bin/make -f
#
.PHONY: clean
 
# This is the default action
all: 
	cd Xsi ; make World -f Makefile.inst 
	cd Xsi/Contrib/dic/gerodic ; make

# This cleans up
clean:
	-rm \#*
	-(cd Xsi ; make clean)
	-(cd Xsi/Contrib/dic/gerodic ; make clean)
	find Xsi -name Makefile ! -path Xsi/Pubdic/Makefile ! -path Xsi/Contrib/dic/gerodic/Makefile -exec rm -f {} \;

# Local Variables:
#   mode: makefile
# End: