Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: John Else <john.else@citrix.com>
  • Loading branch information
johnelse committed Nov 7, 2015
1 parent f214efc commit a8a278b
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ ifeq ($(LWT), true)
endif

CONFIGUREFLAGS=--enable-unix --enable-tests $(LWTFLAG)
BUILDFLAGS=-j 4
DOCFLAGS=-j 4

# OASIS_START
# DO NOT EDIT (digest: a3c674b4239234cbbe53afe090018954)
NAME=osc

# ###################################
# ###################################

SETUP = ocaml setup.ml

Expand All @@ -27,10 +31,11 @@ all:
install: setup.data
$(SETUP) -install $(INSTALLFLAGS)

uninstall: setup.data
$(SETUP) -uninstall $(UNINSTALLFLAGS)
uninstall:
ocamlfind remove $(NAME)

reinstall: setup.data
ocamlfind remove $(NAME) || true
$(SETUP) -reinstall $(REINSTALLFLAGS)

clean:
Expand All @@ -47,7 +52,7 @@ configure:

.PHONY: build doc test all install uninstall reinstall clean distclean configure

# OASIS_STOP
# DO NOT EDIT (digest: a3c674b4239234cbbe53afe090018954)

test-interop-sclang: build
./test-interop-sclang.sh
Expand Down

0 comments on commit a8a278b

Please sign in to comment.