File: Makefile.win32

package info (click to toggle)
esdl 1.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,312 kB
  • ctags: 7,213
  • sloc: ansic: 13,621; erlang: 8,825; makefile: 294; sh: 228; objc: 181
file content (31 lines) | stat: -rwxr-xr-x 524 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
#
#  Makefile --
#
#     Top-level Makefile for building ESDL on Windows.
#
#  Copyright (c) 2001 Bjorn Gustavsson
#
#  See the file "license.terms" for information on usage and redistribution
#  of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
#     $Id$
#

MFLAGS = -f Makefile.win32

all:
	cd src 
	$(MAKE) $(MFLAGS) 
	cd ..\c_src
	$(MAKE) $(MFLAGS)
	cd ..\test
	$(MAKE) $(MFLAGS)
	cd ..
clean:
	cd src 
	-$(MAKE) $(MFLAGS) clean
	cd ..\c_src
	-$(MAKE) $(MFLAGS) clean
	cd ..\test
	-$(MAKE) $(MFLAGS) clean
	cd ..