File: Makefile

package info (click to toggle)
fox 1.0.52-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 10,788 kB
  • ctags: 13,384
  • sloc: cpp: 96,482; sh: 8,338; ansic: 1,935; makefile: 1,010; perl: 32
file content (31 lines) | stat: -rw-r--r-- 549 bytes parent folder | download
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
30
31
#
#  Top-level makefile for Digital Mars C++
#

all:
	cd ..\..\utils
	smake -f Makefile.dmc
	cd ..\src
	smake -f Makefile.dmc
	cd ..\tests
	smake -f Makefile.dmc
	cd ..\adie
	smake -f Makefile.dmc
	cd ..\pathfinder
	smake -f Makefile.dmc
	cd ..\calculator
	smake -f Makefile.dmc

clean:
	cd ..\..\utils
	smake -f Makefile.dmc clean
	cd ..\src
	smake -f Makefile.dmc clean
	cd ..\tests
	smake -f Makefile.dmc clean
	cd ..\adie
	smake -f Makefile.dmc clean
	cd ..\pathfinder
	smake -f Makefile.dmc clean
	cd ..\calculator
	smake -f Makefile.dmc clean