root@4: # root@4: # User defined Makefile options for graphlcd daemon and tools root@4: root@4: ### The C compiler and options: root@4: root@4: CC = gcc root@4: CFLAGS = -O2 root@4: root@4: CXX = g++ root@4: CXXFLAGS = -g -O2 -Wall -Woverloaded-virtual root@4: #CXXFLAGS = -g -ggdb -O0 -Wall -Woverloaded-virtual root@4: root@4: #LDFLAGS = -g -ggdb -O0 root@4: root@4: LDCONFIG = ldconfig root@4: root@4: ### The directory environment: root@4: root@4: ifndef $(DESTDIR) root@4: DESTDIR = /usr/local root@4: endif root@4: root@4: BINDIR = $(DESTDIR)/bin root@4: LIBDIR = $(DESTDIR)/lib root@4: INCDIR = $(DESTDIR)/include root@4: MANDIR = $(DESTDIR)/man root@4: root@4: ### Includes and defines root@4: root@4: #INCLUDES += -I root@4: root@4: DEFINES += -D_GNU_SOURCE root@4: root@4: # comment this variable out if you don't want to use FreeType2 font rendering root@4: HAVE_FREETYPE2=1 root@4: