Add a reference counter in DB.SQLite.Handle
[gnadelite.git] / makefile
blobd5dafd7daf92a934692c02cfc706f96196676638
1 ###########################################################################
2 # GnadeLite
4 # Copyright (C) 2006-2008
5 # Pascal Obry - Olivier Ramonat
7 # This library is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or (at
10 # your option) any later version.
12 # This library is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this library; if not, write to the Free Software Foundation,
19 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 ###########################################################################
23 include mk.config
25 B_DIR=".build/$(shell echo $(MODE) | tr [[:upper:]] [[:lower:]])"
27 APP := $(ADA_PROJECT_PATH)
29 ifeq ($(OS),Windows_NT)
30 export ADA_PROJECT_PATH=$PWD/external-libs/morzhol\;${APP}
31 else
32 export ADA_PROJECT_PATH=$PWD/external-libs/morzhol:${APP}
33 endif
35 all: build
37 setup:
38 runtests:
39 (cd tests; $(GNATMAKE) -Pregtests; $(RUNTEST) ./t1)
41 build:
42 ifneq ($(INSTALL), "")
43 # Write INSTALL target into mk.install (see install target)
44 $(shell echo $(INSTALL) > mk.install)
45 endif
46 $(GNATMAKE) -Pgnadelite
48 clean:
49 $(GNATCLEAN) -Pgnadelite
51 I_BIN = $(INSTALL)/bin
52 I_INC = $(INSTALL)/include/gnadelite
53 I_INC_G = $(INSTALL)/include/gnadelite/gnade
54 I_LIB = $(INSTALL)/lib/gnadelite
55 I_GPR = $(INSTALL)/lib/gnat
57 install_clean:
58 ifeq ("$(INSTALL)", "")
59 $(error "Wrong install path : empty INSTALL var")
60 endif
61 $(RM) -fr $(I_INC)
62 $(RM) -fr $(I_LIB)
63 $(RM) -f $(I_GPR)/gnadelite.gpr
65 install_dirs: install_clean
66 $(MKDIR) $(I_BIN)
67 $(MKDIR) $(I_INC)
68 $(MKDIR) $(I_INC_G)
69 $(MKDIR) $(I_LIB)
70 $(MKDIR) $(I_GPR)
72 ifeq ("$(INSTALL)", "..")
73 # IF GNAT_ROOT is empty and INSTALL var is not set by the user,
74 # the INSTALL var is equal to ".."
75 # In this case, read INSTALL from mk.install. This file is created
76 # before building
77 install: INSTALL = $(shell cat mk.install)
78 endif
80 install: install_dirs
81 $(CP) src/*.ad[sb] $(I_INC)
82 $(CP) gnade_src/*.ad[sb] $(I_INC_G)
83 $(CP) lib/*.ali $(I_LIB)
84 $(CP) lib/*$(SOEXT) $(I_LIB)
85 $(CP) gpr/*.gpr $(I_GPR)
86 ifeq ($(OS), Windows_NT)
87 $(CP) $(I_LIB)/*$(SOEXT) $(I_LIB)/..
88 endif