Initial release of the VFD code
[de200vfd.git] / Makefile.config.
blob9d96fe9c1a9a0717447ff13e97e8c91530777fa6
1 #******************************************************************************
2 #  Makefile.config.                (C) 1992-2000 Christophe de Dinechin (ddd)
3 #                                                              Mozart Project
4 #******************************************************************************
6 #  File Description:
8 #    Default configuration file invoked when the configuration is unknown
9 #    In that case, we pick one based on the uname.
17 #******************************************************************************
18 #This document is distributed under the GNU General Public License
19 #See the enclosed COPYING file or http://www.gnu.org for information
20 #******************************************************************************
21 #* File       : $RCSFile$
22 #* Revision   : $Revision: 1.1 $
23 #* Date       : $Date: 2001/10/26 15:56:58 $
24 #******************************************************************************
26 # Identification of the default build environment
27 BUILDENV=$(BUILDENV_$(shell uname -s))
28 BUILDENV_Darwin=macosx
29 BUILDENV_Linux=linux
30 BUILDENV_Windows=cygwin
31 BUILDENV_HP-UX=hpux
33 all:    debug
36         @echo The BUILDENV environment variable is not set
37         @echo You accelerating it by setting it as appropriate for
38         @echo your system. The best guess is BUILDENV=$(BUILDENV)
39         @echo Attempting to build $* with $(BUILDENV)
40         @sleep 1
41         BUILDENV=$(BUILDENV) $(MAKE) $@;