This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile
62 lines (54 loc) · 1.69 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#
.PHONY: configure
configure:
configure
.PHONY: clean-ant
clean-ant:
ant clean
.PHONY: clean-noant
clean-noant:
rm -rf velocity.log
rm -rf config.results
rm -rf config7.results
rm -rf bin/las_ui_check.sh
rm -rf bin/initialize_check.sh
rm -rf conf/example/LAS_Config.pl
rm -rf conf/example/sample_las.xml
rm -rf conf/example/sample_ui.xml
rm -rf conf/example/sample_insitu_las.xml
rm -rf conf/example/sample_insitu_ui.xml
rm -rf conf/example/productserver.xml
rm -rf conf/example/LAS_config.pl
rm -rf startserver.sh rebootserver.sh stopserver.sh
rm -rf JavaSource/resources/ferret/FerretBackendConfig.xml
rm -rf JavaSource/resources/database/DatabaseBackendConfig.xml
rm -rf JavaSource/resources/ferret/FerretBackendConfig.xml.base
rm -rf JavaSource/resources/kml/KMLBackendConfig.xml
rm -rf WebContent/TestLinks.html
rm -rf WebContent/classes
rm -rf WebContent/docs
rm -rf WebContent/WEB-INF/classes
rm -rf WebContent/WEB-INF/struts-config.xml
rm -rf WebContent/WEB-INF/web.xml
rm -rf xml/perl/genLas.pl
rm -rf build.xml
rm -rf test/LASTest/las_test_config.xml
.PHONY: clean-more
clean-more:
rm -f bin/addXML.sh
rm -f bin/addDiscrete.sh
rm -f bin/lasTest.sh
rm -f JavaSource/log4j.xml
rm -f JavaSource/log4j2.xml
rm -f JavaSource/resources/ferret/FerretBackendConfig.xml.pybase
rm -f WebContent/productserver/templates/revision.vm
rm -f WebContent/productserver/templates/svn.vm
rm -fr conf/server
rm -fr WebContent/JavaScript/gwt-unitCache
rm -fr WebContent/JavaScript/components/WEB-INF
rm -fr WebContent/JavaScript/components/gov.noaa.pmel.tmap.las.*
rm -fr build
.PHONY: clean
clean: clean-ant clean-noant
.PHONY: ultra-clean
ultra-clean: clean-ant clean-noant clean-more