Add regular reset in case the VFD goes into bizarre mode
[de200vfd.git] / Makefile.config.gnu
blob080feb970749064a611c810c987a720b81f8caa3
1 #******************************************************************************
2 #  Makefile.config.gnu             (C) 1992-2000 Christophe de Dinechin (ddd)
3 #                                                              Mozart Project
4 #******************************************************************************
6 #  File Description:
8 #    Makefile configuration file for the Mozart project
10 #    This version is for GCC on most OS
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.2 $
23 #* Date       : $Date: 2001/10/26 23:00:49 $
24 #******************************************************************************
26 #------------------------------------------------------------------------------
27 #  Tools
28 #------------------------------------------------------------------------------
30 CC=gcc
31 CXX=g++
32 CPP=gcc -E
33 LD=g++
34 AR=ar
35 RANLIB=ranlib
36 CC_DEPEND=$(CC) $(CPPFLAGS) $(CPPFLAGS_$*) -MG -M > _tmp.depend
37 CXX_DEPEND=$(CXX) $(CPPFLAGS) $(CPPFLAGS_$*) -MG -M > _tmp.depend
38 AS_DEPEND=$(CC) $(CPPFLAGS) $(CPPFLAGS_$*) -MG -M > _tmp.depend
41 #------------------------------------------------------------------------------
42 #  Compilation flags
43 #------------------------------------------------------------------------------
45 CFLAGS_debug=-g
46 CFLAGS_opt=-O3
48 CXXFLAGS_debug=-g
49 CXXFLAGS_opt=-O3