*** empty log message ***

This commit is contained in:
Antoine Drouin
2006-05-30 18:11:08 +00:00
parent 41972c031d
commit bf8881a191
3 changed files with 18 additions and 12 deletions
+14 -11
View File
@@ -46,17 +46,6 @@ install_bin:
install sw/simulator/simsitl.pl $(DESTDIR)/bin/ install sw/simulator/simsitl.pl $(DESTDIR)/bin/
install sw/ground_segment/cockpit/cockpit.pl $(DESTDIR)/bin/ install sw/ground_segment/cockpit/cockpit.pl $(DESTDIR)/bin/
install sw/ground_segment/tmtc/server $(DESTDIR)/bin/ install sw/ground_segment/tmtc/server $(DESTDIR)/bin/
install -t $(DESTDIR)/bin/ sw/tools/*.out
install -t $(DESTDIR)/bin/ sw/tools/extract_makefile.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_aircraft.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_airframe.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_calib.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_control.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_flight_plan.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_messages.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_periodic.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_radio.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_ubx.ml
install_libs: install_libs:
install -d $(PREFIX)/lib/perl5/Paparazzi install -d $(PREFIX)/lib/perl5/Paparazzi
@@ -75,6 +64,19 @@ install_libs:
install_tools: install_tools:
install -t $(DESTDIR) Makefile* install -t $(DESTDIR) Makefile*
install -t $(DESTDIR)/conf conf/Makefile* install -t $(DESTDIR)/conf conf/Makefile*
install -t $(DESTDIR)/bin/ sw/tools/*.out
install -t $(DESTDIR)/bin/ sw/tools/extract_makefile.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_aircraft.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_airframe.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_calib.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_control.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_flight_plan.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_messages.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_periodic.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_radio.ml
install -t $(DESTDIR)/bin/ sw/tools/gen_ubx.ml
install -d $(DESTDIR)/sw/simulator
install -t $(DESTDIR)/sw/simulator sw/simulator/Makefile
install_airborne_sources: install_airborne_sources:
install -d $(PREFIX)/sw/ install -d $(PREFIX)/sw/
@@ -83,4 +85,5 @@ install_airborne_sources:
install_skel: install_skel:
cp -a conf $(DESTDIR)/ cp -a conf $(DESTDIR)/
cp -a data $(DESTDIR)/ cp -a data $(DESTDIR)/
install -d $(DESTDIR)/var
cp -a var/Twin3 $(DESTDIR)/var/ cp -a var/Twin3 $(DESTDIR)/var/
+3
View File
@@ -1,4 +1,7 @@
#! /bin/sh #! /bin/sh
if test -z "$PAPARAZZI_SRC"; then if test -z "$PAPARAZZI_SRC"; then
PAPARAZZI_SRC=/usr/share/paparazzi PAPARAZZI_SRC=/usr/share/paparazzi
PAPARAZZI_BIN=$PAPARAZZI_SRC/bin
else
PAPARAZZI_BIN=$PAPARAZZI_SRC/sw/tools
fi fi
+1 -1
View File
@@ -48,7 +48,7 @@ fp_syntax.cmo : fp_syntax.cmi
@echo OC $< @echo OC $<
$(Q)$(OCAMLC) -o $@ ivy-ocaml.cma lib-pprz.cma $< $(Q)$(OCAMLC) -o $@ ivy-ocaml.cma lib-pprz.cma $<
@cat ../../pprz_src_test.sh > $@ @cat ../../pprz_src_test.sh > $@
@echo '$(OCAML) -I $$PAPARAZZI_SRC/sw/lib/ocaml ivy-ocaml.cma lib-pprz.cma $$PAPARAZZI_SRC/sw/tools/$< $$*' >> $@ @echo '$(OCAML) -I $$PAPARAZZI_SRC/sw/lib/ocaml ivy-ocaml.cma lib-pprz.cma $$PAPARAZZI_BIN/$< $$*' >> $@
@chmod a+x $@ @chmod a+x $@
%.cmo : %.ml ../lib/ocaml/lib-pprz.cma %.cmo : %.ml ../lib/ocaml/lib-pprz.cma