# -*-Makefile-*- (for Emacs) # # This file is part of rasdaman community. # # Rasdaman community is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Rasdaman community is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with rasdaman community. If not, see . # # Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Peter Baumann / # rasdaman GmbH. # # For more information please see # or contact Peter Baumann via . # # MAKEFILE FOR: # module rasdl # # COMMENTS: # For static linking you have to do first: setenv STATIC_LIBS=true # ################################################################## rasdl_LFLAGS = -I rasdl_YFLAGS = -d -y bin_PROGRAMS += rasdl rasdl_SOURCES=lex.ll odl.yy parse.cc parse.hh symbtbl.cc symbtbl.hh \ alloca.cc rasdl.cc rasdl_error.cc rasdl_error.hh \ template_inst.hh yparse.hh \ ../mymalloc/mymalloc.h ../mymalloc/mymalloc_svc.cc rasdl_LDADD = ../reladminif/libreladminif.la ../relmddif/librelmddif.la \ ../relstorageif/librelstorageif.la ../relindexif/librelindexif.la \ ../relcatalogif/librelcatalogif.la ../relblobif/librelblobif.la \ ../indexmgr/libindexmgr.la ../catalogmgr/libcatalogmgr.la \ ../storagemgr/libstoragemgr.la ../tilemgr/libtilemgr.la \ ../compression/libcompression.la ../commline/libcommline.la ../raslib/libraslib.la \ ../conversion/libconversion.la ../rasodmg/librasodmg.la rasdl_CPPFLAGS = $(AM_CPPFLAGS) rasdl_CPPFLAGS += $(BASEDB_CPPFLAGS) rasdl_LDADD += $(BASEDB_LIBS) # BUILT_SOURCES=lex.cc odl.cc odl.h # CLEANFILES=lex.cc odl.cc odl.h #.PHONY : doc #doc: # -rm $(DOCDIR)/* # gawk -f rasdl.awk odl.y > odl.grammar # head -n 16 rasdlgrammar.html > $(DOCDIR)/rasdlgrammar.html # cat odl.grammar >> $(DOCDIR)/rasdlgrammar.html # tail -n 8 rasdlgrammar.html >> $(DOCDIR)/rasdlgrammar.html # $(DOCXX) -d $(DOCDIR) *.hh # chmod 664 $(DOCDIR)/* $(DOCDIR)/.??*