mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-10 06:59:54 +08:00
109 lines
2.8 KiB
Makefile
109 lines
2.8 KiB
Makefile
# Paparazzi simulator $Id$
|
|
#
|
|
# Copyright (C) 2003-2006 Pascal Brisset, Antoine Drouin
|
|
#
|
|
# This file is part of paparazzi.
|
|
#
|
|
# paparazzi 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 2, or (at your option)
|
|
# any later version.
|
|
#
|
|
# paparazzi 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 paparazzi; see the file COPYING. If not, write to
|
|
# the Free Software Foundation, 59 Temple Place - Suite 330,
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
# Quiet compilation
|
|
Q=@
|
|
|
|
LBITS := $(shell getconf LONG_BIT)
|
|
ifeq ($(LBITS),64)
|
|
FPIC = -ccopt -fPIC
|
|
else
|
|
FPIC =
|
|
endif
|
|
|
|
include ../../conf/Makefile.local
|
|
|
|
SIMML = stdlib.ml data.ml flightModel.ml gps.ml
|
|
SIMHML = $(SIMML) hitl.ml sim.ml
|
|
SIMHCMO=$(SIMHML:%.ml=%.cmo)
|
|
SIMSML = $(SIMML) sitl.ml sim.ml
|
|
SIMSCMO=$(SIMSML:%.ml=%.cmo)
|
|
SIMSCMX=$(SIMSML:%.ml=%.cmx)
|
|
|
|
|
|
OCAMLC = ocamlc -g
|
|
OCAMLOPT=ocamlopt
|
|
OCAML=$(shell which ocaml)
|
|
OCAMLRUN=$(shell which ocamlrun)
|
|
INCLUDES= $(shell ocamlfind query -r -i-format lablgtk2) -I ../lib/ocaml $(shell ocamlfind query -r -i-format xml-light)
|
|
|
|
AIRBORNE = ../airborne
|
|
VARINCLUDE=$(PAPARAZZI_HOME)/var/include
|
|
ACINCLUDE = $(PAPARAZZI_HOME)/var/$(AIRCRAFT)
|
|
LAUNCHSITL = launchsitl
|
|
|
|
all : gaia sitl.cma $(LAUNCHSITL) simhitl
|
|
@chmod a+x $(LAUNCHSITL)
|
|
|
|
simhitl : fg.o $(SIMHCMO) simhitl.cmo
|
|
@echo OL $@
|
|
$(Q)$(OCAMLC) -custom $(INCLUDES) -o $@ str.cma xml-light.cma unix.cma glibivy-ocaml.cma lib-pprz.cma lablgtk.cma gtkInit.cmo $^
|
|
|
|
sitl.cma : fg.o $(SIMSCMO)
|
|
@echo OL $@
|
|
$(Q)ocamlmklib -o sitl $^
|
|
|
|
sitl.cmxa : $(SIMSCMX)
|
|
ocamlopt -o $@ -a $^
|
|
|
|
gaia : gaia.cmo
|
|
@echo OL $@
|
|
$(Q)$(OCAMLC) -custom $(INCLUDES) -o $@ unix.cma str.cma xml-light.cma glibivy-ocaml.cma lib-pprz.cma lablgtk.cma gtkInit.cmo $<
|
|
|
|
diffusion : stdlib.cmo diffusion.cmo
|
|
@echo OL $@
|
|
$(Q)$(OCAMLC) -custom $(INCLUDES) -o $@ unix.cma str.cma xml-light.cma glibivy-ocaml.cma lib-pprz.cma lablgtk.cma gtkInit.cmo $^
|
|
|
|
%.cmo : %.ml ../lib/ocaml/lib-pprz.cma
|
|
@echo OC $<
|
|
$(Q)$(OCAMLC) $(INCLUDES) -c $<
|
|
|
|
%.o : %.c
|
|
@echo OC $<
|
|
$(Q)$(OCAMLC) $(FPIC) -c $<
|
|
|
|
%.cmx : %.ml
|
|
@echo OOC $<
|
|
$(Q)$(OCAMLOPT) $(INCLUDES) -c $<
|
|
|
|
%.cmi : %.mli ../lib/ocaml/lib-pprz.cma
|
|
@echo OC $<
|
|
$(Q)$(OCAMLC) $(INCLUDES) -c $<
|
|
|
|
clean :
|
|
rm -f *.cm* *~ *.out .depend *.o *.a *.so gaia simhitl booz_sim test2
|
|
|
|
launchsitl :
|
|
cat ../../src/$(@F) | sed s#OCAMLRUN#$(OCAMLRUN)# | sed s#OCAML#$(OCAML)# > $@
|
|
chmod a+x $@
|
|
|
|
|
|
#
|
|
# Dependencies
|
|
#
|
|
|
|
.depend:
|
|
ocamldep *.ml* > .depend
|
|
|
|
ifneq ($(MAKECMDGOALS),clean)
|
|
-include .depend
|
|
endif
|