File: Makefile.pkg

package info (click to toggle)
python-mxstack 0.3.0-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 204 kB
  • ctags: 272
  • sloc: ansic: 1,329; python: 163; makefile: 44; sh: 19
file content (24 lines) | stat: -rw-r--r-- 275 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
all:	compile install

compile:
	cd mxStack; \
	$(MAKE) -f Makefile.pre.in boot; \
	$(MAKE)

install:
	cd mxStack; \
	$(MAKE) install

test:
	cd mxStack; \
	python test.py

doc:
	-true


# Cleanup before distributing the package
#
distclean:
	cd mxStack; \
	$(MAKE) distclean