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 ..
|