File: Makefile.code

package info (click to toggle)
ocamlnet 4.1.9-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 54,040 kB
  • sloc: ml: 151,939; ansic: 11,071; sh: 2,003; makefile: 1,310
file content (20 lines) | stat: -rw-r--r-- 322 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
TOP_DIR = ../../..
include $(TOP_DIR)/Makefile.rules

REQUIRES = rpc,unix,netgss-system
OBJ = rfc3530_aux.cmo rfc3530_clnt.cmo
XOBJ = $(OBJ:.cmo=.cmx)

CLEAN_LIST += 

all: nfs4.cma

opt: nfs4.cmxa

nfs4.cma: $(OBJ)
	$(OCAMLC) -o nfs4.cma -a $(OBJ)

nfs4.cmxa: $(XOBJ)
	$(OCAMLOPT) -o nfs4.cmxa -a $(XOBJ)

include depend