File: Makefile.pkg

package info (click to toggle)
egenix-mx-base 3.2.1-1.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 8,496 kB
  • sloc: ansic: 21,976; python: 17,192; sh: 137; makefile: 116
file content (37 lines) | stat: -rw-r--r-- 843 bytes parent folder | download | duplicates (4)
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
all:	compile install

# Compile target. This should setup the package and compile it
# into a state ready for installation.

compile:
	cd mxURL; \
	if ! test -f Makefile; then $(MAKE) -f Makefile.pre.in boot; fi; \
	$(MAKE)

# Install target. This should do the install step. If the package
# needs no further installation step (i.e. the extension is not
# needed by other extension modules), then you can leave this target
# blank.

install:
	cd mxURL; \
	$(MAKE) install

# Test target. Should do some testing of the extension. Writing
# something like 'ok' or 'works' and the end of a successful run.

test:
	cd mxURL; \
	python test.py

# Documentation target. Use this to have the documentation for
# an extension generated at the user.

doc:
	# ???

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