Unverified Commit 85a21612 authored by Kelvin Rodriguez's avatar Kelvin Rodriguez Committed by GitHub
Browse files

removed makefiles (#4368)

parent a15b0c73
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
BLANKS = "%-6s"    
LENGTH = "%-40s"

include $(ISISROOT)/make/isismake.tststree
+0 −43
Original line number Diff line number Diff line
APPNAME = footprintinit

include $(ISISROOT)/make/isismake.tsts

# cp so I don't destroy the input cube
commands:
	$(CP) $(INPUT)/CM_1504753137_1.ir.cub \
	      $(OUTPUT)/CM_1504753137_1.ir.cub;
	$(APPNAME) from=$(OUTPUT)/CM_1504753137_1.ir.cub \
	           sinc=5 \
	           linc=5 \
	           >& /dev/null;
	$$ISISROOT/bin/blobdump from=$(OUTPUT)/CM_1504753137_1.ir.cub \
	                        to=$(OUTPUT)/CM_1504753137_1.txt \
	                        name=footprint \
	                        type=Polygon \
	                        >& /dev/null;
	$(CAT) $(OUTPUT)/CM_1504753137_1.txt \
	       | $(SED) 's/\([0-9]\.[0-9]\{3\}\)\([0-9]*\)/\1/g' \
	       | $(SED) -e '$$G' \
	       >& $(OUTPUT)/CM_1504753137_1.trimmed.txt;

	$(CP) $(INPUT)/CM_1504753137_1.ir.cub \
	      $(OUTPUT)/CM_1504753137_1.2.ir.cub;
	$(APPNAME) from=$(OUTPUT)/CM_1504753137_1.2.ir.cub \
	           sinc=5 \
	           linc=5 \
	           maxemission=50.0 \
	           maxincidence=50.0 \
	           >& /dev/null;
	$$ISISROOT/bin/blobdump from=$(OUTPUT)/CM_1504753137_1.2.ir.cub \
	                        to=$(OUTPUT)/CM_1504753137_1.2.txt \
	                        name=footprint \
	                        type=Polygon \
	                        >& /dev/null;
	$(CAT) $(OUTPUT)/CM_1504753137_1.2.txt \
	       | $(SED) 's/\([0-9]\.[0-9]\{5\}\)\([0-9]*\)/\1/g' \
	       | $(SED) -e '$$G' \
	       >& $(OUTPUT)/CM_1504753137_1.2.trimmed.txt;
	$(RM) $(OUTPUT)/CM_1504753137_1.ir.cub;
	$(RM) $(OUTPUT)/CM_1504753137_1.2.ir.cub;
	$(RM) $(OUTPUT)/CM_1504753137_1.txt;
	$(RM) $(OUTPUT)/CM_1504753137_1.2.txt;
+0 −21
Original line number Diff line number Diff line
APPNAME = footprintinit

include $(ISISROOT)/make/isismake.tsts

# cp so I don't destroy the input cube
commands:
	$(CP) $(INPUT)/N1500056057_2.cub $(OUTPUT)/N1500056057_2.cub;
	$(APPNAME) from=$(OUTPUT)/N1500056057_2.cub \
	           sinc=10 \
	           linc=10 \
	           >& /dev/null;
	$$ISISROOT/bin/blobdump from=$(OUTPUT)/N1500056057_2.cub \
	                        to=$(OUTPUT)/N1500056057_2.txt \
	                        name=footprint \
	                        type=Polygon \
	                        >& /dev/null;
	$(CAT) $(OUTPUT)/N1500056057_2.txt \
	       | $(SED) 's/\([0-9]\.[0-9]\{3\}\)\([0-9]*\)/\1/g' \
	       | $(SED) -e '$$G' \
	       >& $(OUTPUT)/N1500056057_2.trimmed.txt;
	$(RM) $(OUTPUT)/N1500056057_2.cub $(OUTPUT)/N1500056057_2.txt;
+0 −20
Original line number Diff line number Diff line
APPNAME = footprintinit

include $(ISISROOT)/make/isismake.tsts

# cp so I don't destroy the input cube
commands:
	$(CP) $(INPUT)/e1202081.cub $(OUTPUT)/e1202081.cub;
	$(APPNAME) from=$(OUTPUT)/e1202081.cub \
	           sinc=17 \
	           linc=17 \
	           >& /dev/null;
	$$ISISROOT/bin/blobdump from=$(OUTPUT)/e1202081.cub \
	                        to=$(OUTPUT)/e1202081.txt \
	                        name=footprint \
	                        type=Polygon \
	                        >& /dev/null;
	$(CAT) $(OUTPUT)/e1202081.txt \
	       | $(SED) 's/\([0-9]\.[0-9]\{3\}\)\([0-9]*\)/\1/g' \
	       | $(SED) -e '$$G' >& $(OUTPUT)/e1202081.trimmed.txt;
	$(RM) $(OUTPUT)/e1202081.cub $(OUTPUT)/e1202081.txt;
+0 −21
Original line number Diff line number Diff line
APPNAME = footprintinit

include $(ISISROOT)/make/isismake.tsts

# cp so I don't destroy the input cube
commands:
	$(CP) $(INPUT)/V30027015RDR.even.cub $(OUTPUT)/V30027015RDR.even.cub;
	$(APPNAME) from=$(OUTPUT)/V30027015RDR.even.cub \
	           sinc=65 \
	           linc=65 \
	           >& /dev/null;
	$$ISISROOT/bin/blobdump from=$(OUTPUT)/V30027015RDR.even.cub \
	                        to=$(OUTPUT)/V30027015RDR.even.txt \
	                        name=footprint \
	                        type=Polygon \
	                        >& /dev/null;
	$(CAT) $(OUTPUT)/V30027015RDR.even.txt \
	       | $(SED) 's/\([0-9]\.[0-9]\{6\}\)\([0-9]*\)/\1/g' \
	       | $(SED) -e '$$G' \
		   >& $(OUTPUT)/V30027015RDR.trimmed.even.txt;
	$(RM) $(OUTPUT)/V30027015RDR.even.cub $(OUTPUT)/V30027015RDR.even.txt;
Loading