Add DB.Tools
[gnadelite.git] / makefile
blob7abb97fde029c75f2ad325514b18b38e9ae63da1
1 ###########################################################################
2 # GnadeLite
4 # Copyright (C) 2006-2007
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 # Simple makefile to build Vision2Pixels
22 ###########################################################################
24 include mk.config
26 B_DIR=".build/$(shell echo $(MODE) | tr [[:upper:]] [[:lower:]])"
28 ifeq ($(OS),Windows_NT)
29 export ADA_PROJECT_PATH=$PWD/external-libs/morzhol\;$ADA_PROJECT_PATH
30 else
31 export ADA_PROJECT_PATH=$PWD/external-libs/morzhol:$ADA_PROJECT_PATH
32 endif
34 all: build
36 build:
37 $(GNATMAKE) -Pgnadelite
39 clean:
40 $(GNATCLEAN) -Pgnadelite
42 I_BIN = $(INSTALL)/bin
43 I_INC = $(INSTALL)/include/gnadelite
44 I_INC_G = $(INSTALL)/include/gnadelite/gnade
45 I_LIB = $(INSTALL)/lib/gnadelite
46 I_GPR = $(INSTALL)/lib/gnat
48 install_clean:
49 ifeq ("$(INSTALL)", "..")
50 $(error "Wrong install path : INSTALL='$(INSTALL)'")
51 else
52 ifeq ("$(INSTALL)", "")
53 $(error "Wrong install path : empty INSTALL var")
54 endif
55 endif
56 $(RM) -fr $(I_INC)
57 $(RM) -fr $(I_LIB)
58 $(RM) -f $(I_GPR)/gnadelite.gpr
60 install_dirs: install_clean
61 $(MKDIR) $(I_BIN)
62 $(MKDIR) $(I_INC)
63 $(MKDIR) $(I_INC_G)
64 $(MKDIR) $(I_LIB)
65 $(MKDIR) $(I_GPR)
67 install: install_dirs
68 $(CP) src/*.ad[sb] $(I_INC)
69 $(CP) gnade_src/*.ad[sb] $(I_INC_G)
70 $(CP) lib/*.ali $(I_LIB)
71 $(CP) lib/*$(SOEXT) $(I_LIB)
72 $(CP) gpr/*.gpr $(I_GPR)
73 ifeq ($(OS), Windows_NT)
74 $(CP) $(I_LIB)/*$(SOEXT) $(I_LIB)/..
75 endif