~ubuntu-branches/ubuntu/hardy/pxp/hardy

« back to all changes in this revision

Viewing changes to src/pxp-wlex/Makefile.code

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Zacchiroli
  • Date: 2005-03-29 11:06:39 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050329110639-5p39hz1d4aq3r2ec
Tags: 1.1.95-6
* Rebuilt against ocaml 3.08.3
* No longer built with wlex support (since wlex is no longer supported
  upstream and corresponding package has been removed from the debian
  archive)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
TOP_DIR = ../..
2
 
include $(TOP_DIR)/Makefile.rules
3
 
 
4
 
PACKAGES = netstring wlexing
5
 
 
6
 
OBJ = pxp_wlex_aux.cmo pxp_wlex.cmo
7
 
XOBJ = $(OBJ:.cmo=.cmx)
8
 
 
9
 
OCAMLC_OPTIONS   = -I ../pxp-engine
10
 
OCAMLOPT_OPTIONS = -I ../pxp-engine
11
 
 
12
 
all: pxp_wlex.cma
13
 
 
14
 
opt: pxp_wlex.cmxa
15
 
 
16
 
pxp_wlex.cma: $(OBJ) pxp_wlex_link.cmo
17
 
        $(OCAMLC) -o pxp_wlex.cma -a $(OBJ)
18
 
 
19
 
pxp_wlex.cmxa: $(XOBJ) pxp_wlex_link.cmx
20
 
        $(OCAMLOPT) -o pxp_wlex.cmxa -a $(XOBJ)
21
 
 
22
 
include depend
23
 
 
24
 
*.ml: ../pxp-engine/pxp_types.cmi ../pxp-engine/pxp_lexer_types.cmi