diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-03-07 23:42:46 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-03-07 23:42:46 -0500 |
commit | 727498350ee97618f5a23f93addaef43e7d950af (patch) | |
tree | ea77abba309c71e438bbf3fd5aa600c86116e7f9 /src/cal/get_tle/Makefile.am | |
parent | ece6c047eacb388ed4d36ce1eb18cc96b47a047e (diff) | |
download | calfuse-727498350ee97618f5a23f93addaef43e7d950af.tar.gz |
Massive fixes. Adding the rest of the code.
Diffstat (limited to 'src/cal/get_tle/Makefile.am')
-rw-r--r-- | src/cal/get_tle/Makefile.am | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/src/cal/get_tle/Makefile.am b/src/cal/get_tle/Makefile.am new file mode 100644 index 0000000..a2a12ee --- /dev/null +++ b/src/cal/get_tle/Makefile.am @@ -0,0 +1,86 @@ +bin_SCRIPTS = \ + add_tle.pl \ + check_tle.pl \ + get_tle.pl \ + get_tle.pl.space-track \ + make_cvzramtool.pl \ + make_orbit.pl \ + test_get_tle.pl \ + update_tle.csh + +noinst_SCRIPTS = \ + GetTLE.class \ + GetTLE.java + +EXTRA_DIST = \ + GetTLE.class.in \ + GetTLE.java.in \ + add_tle.pl.in \ + check_tle.pl.in \ + get_tle.pl.in \ + get_tle.pl.space-track.in \ + make_cvzramtool.pl.in \ + make_orbit.pl.in \ + test_get_tle.pl.in \ + update_tle.csh.in + +CLEANFILES = \ + GetTLE.class \ + GetTLE.java \ + add_tle.pl \ + check_tle.pl \ + get_tle.pl \ + get_tle.pl.space-track \ + make_cvzramtool.pl \ + make_orbit.pl \ + test_get_tle.pl \ + update_tle.csh + +do_subst = sed -e 's,[@]DATADIR[@],$(pkgdatadir)-$(VERSION),g' \ + -e 's,[@]PREFIX[@],$(prefix),g' \ + -e 's,[@]VERSION[@],$(VERSION),g' + +GetTLE.class: GetTLE.class.in Makefile + $(do_subst) < GetTLE.class.in > GetTLE.class + chmod 644 GetTLE.class + +GetTLE.java: GetTLE.java.in Makefile + $(do_subst) < GetTLE.java.in > GetTLE.java + chmod 644 GetTLE.java + +add_tle.pl: add_tle.pl.in Makefile + $(do_subst) < add_tle.pl.in > add_tle.pl + chmod +x add_tle.pl + +check_tle.pl: check_tle.pl.in Makefile + $(do_subst) < check_tle.pl.in > check_tle.pl + chmod +x check_tle.pl + +get_tle.pl: get_tle.pl.in Makefile + $(do_subst) < get_tle.pl.in > get_tle.pl + chmod +x get_tle.pl + +get_tle.pl.space-track: get_tle.pl.space-track.in Makefile + $(do_subst) < get_tle.pl.space-track.in > get_tle.pl.space-track + chmod +x get_tle.pl.space-track + +make_cvzramtool.pl: make_cvzramtool.pl.in Makefile + $(do_subst) < make_cvzramtool.pl.in > make_cvzramtool.pl + chmod +x make_cvzramtool.pl + +make_orbit.pl: make_orbit.pl.in Makefile + $(do_subst) < make_orbit.pl.in > make_orbit.pl + chmod +x make_orbit.pl + +test_get_tle.pl: test_get_tle.pl.in Makefile + $(do_subst) < test_get_tle.pl.in > test_get_tle.pl + chmod +x test_get_tle.pl + +update_tle.csh: update_tle.csh.in Makefile + $(do_subst) < update_tle.csh.in > update_tle.csh + chmod +x update_tle.csh + +install-data-local: GetTLE.class GetTLE.java + mkdir -p $(DESTDIR)$(pkgdatadir)-$(VERSION)/java + install -D -m 644 GetTLE.class $(DESTDIR)$(pkgdatadir)-$(VERSION)/java + install -D -m 644 GetTLE.java $(DESTDIR)$(pkgdatadir)-$(VERSION)/java |