annotate grep/Makefile @ 0:3cd6685bba2e default tip

grep
author kyodashigehisa@kyoda-3.local
date Mon, 01 Nov 2010 17:03:36 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
kyodashigehisa@kyoda-3.local
parents:
diff changeset
1 default: macosx
kyodashigehisa@kyoda-3.local
parents:
diff changeset
2
kyodashigehisa@kyoda-3.local
parents:
diff changeset
3 macosx: FORCE
kyodashigehisa@kyoda-3.local
parents:
diff changeset
4 @echo "Make for Mac OS X"
kyodashigehisa@kyoda-3.local
parents:
diff changeset
5 @$(MAKE) -f Makefile.macosx
kyodashigehisa@kyoda-3.local
parents:
diff changeset
6
kyodashigehisa@kyoda-3.local
parents:
diff changeset
7 linux: FORCE
kyodashigehisa@kyoda-3.local
parents:
diff changeset
8 @echo "Make for Linux"
kyodashigehisa@kyoda-3.local
parents:
diff changeset
9 @$(MAKE) -f Makefile.linux
kyodashigehisa@kyoda-3.local
parents:
diff changeset
10
kyodashigehisa@kyoda-3.local
parents:
diff changeset
11 cell: FORCE
kyodashigehisa@kyoda-3.local
parents:
diff changeset
12 @echo "Make for CELL (Cell)"
kyodashigehisa@kyoda-3.local
parents:
diff changeset
13 @$(MAKE) -f Makefile.cell
kyodashigehisa@kyoda-3.local
parents:
diff changeset
14
kyodashigehisa@kyoda-3.local
parents:
diff changeset
15 FORCE:
kyodashigehisa@kyoda-3.local
parents:
diff changeset
16
kyodashigehisa@kyoda-3.local
parents:
diff changeset
17 clean:
kyodashigehisa@kyoda-3.local
parents:
diff changeset
18 @$(MAKE) -f Makefile.macosx clean
kyodashigehisa@kyoda-3.local
parents:
diff changeset
19 @$(MAKE) -f Makefile.linux clean
kyodashigehisa@kyoda-3.local
parents:
diff changeset
20 @$(MAKE) -f Makefile.cell clean