File: Makefile

package info (click to toggle)
pxp 1.2.9-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,844 kB
  • sloc: ml: 28,666; xml: 2,597; makefile: 822; sh: 691
file content (33 lines) | stat: -rw-r--r-- 775 bytes parent folder | download | duplicates (12)
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
# make xmlforms:	make bytecode executable
# make xmlforms.opt: 	make native executable
# make clean: 		remove intermediate files
# make CLEAN:           remove intermediate files (recursively)
# make distclean: 	remove any superflous files
# make release: 	cleanup, create archive, tag CVS module 
#			(for developers)
#----------------------------------------------------------------------

.PHONY: xmlforms
xmlforms:
	$(MAKE) -f Makefile.code xmlforms

.PHONY: xmlforms.opt
xmlforms.opt:
	$(MAKE) -f Makefile.code xmlforms.opt


.PHONY: clean
clean:
	rm -f *.cmi *.cmo *.cma *.cmx *.o *.a *.cmxa

.PHONY: CLEAN
CLEAN: clean
	$(MAKE) -C styles CLEAN

.PHONY: distclean
distclean: clean
	rm -f *~ depend depend.pkg
	rm -f xmlforms xmlforms.opt
	$(MAKE) -C styles distclean