44 lines
1.7 KiB
Makefile
44 lines
1.7 KiB
Makefile
#########################################################################
|
|
# #
|
|
# Objective Caml #
|
|
# #
|
|
# Xavier Leroy, projet Cristal, INRIA Rocquencourt #
|
|
# #
|
|
# Copyright 1999 Institut National de Recherche en Informatique et #
|
|
# en Automatique. All rights reserved. This file is distributed #
|
|
# under the terms of the GNU Library General Public License. #
|
|
# #
|
|
#########################################################################
|
|
|
|
# $Id$
|
|
|
|
PROGS=test1.byt test2.byt test3.byt test4.byt test5.byt test6.byt \
|
|
test7.byt test8.byt test9.byt testA.byt sieve.byt \
|
|
testio.byt testsocket.byt testwait.byt testsignal.byt testsignal2.byt
|
|
|
|
!include ../../../config/Makefile.nt
|
|
|
|
CAMLC=..\..\..\boot\ocamlrun ..\..\..\ocamlc -I .. -I ..\..\win32unix -I ..\..\..\stdlib
|
|
CAMLOPT=..\..\..\boot\ocamlrun ..\..\..\ocamlopt -I .. -I ..\..\win32unix -I ..\..\..\stdlib
|
|
|
|
all: $(PROGS)
|
|
|
|
allopt: $(PROGS:.byt=.out)
|
|
|
|
clean:
|
|
rm -f *.cm* *.byt *.out
|
|
rm -f $(PROGS:.byt=.ml)
|
|
|
|
.SUFFIXES: .ml .byt .out
|
|
|
|
{..\..\threads\Tests}.ml{}.byt:
|
|
cp ../../threads/Tests/$*.ml $*.ml
|
|
$(CAMLC) -o $*.byt unix.cma threads.cma $*.ml
|
|
|
|
{..\..\threads\Tests}.ml{}.out:
|
|
cp ../../threads/Tests/$*.ml $*.ml
|
|
$(CAMLOPT) -o $*.out unix.cmxa threads.cmxa $*.ml
|
|
|
|
$(PROGS): ../threads.cma ../libthreads.lib
|
|
$(PROGS:.byt=.out): ../threads.cmxa ../libthreadsnat.lib
|