irc-bot/OMakefile

38 lines
621 B
Plaintext
Raw Normal View History

OCAMLPACKS[] =
equeue
pcre
str
2008-03-10 23:57:07 -06:00
OCAML_CLIBS = ocamlepoll
OCAMLCFLAGS += -g
.DEFAULT: ircd
2008-03-10 23:57:07 -06:00
StaticCLibrary(ocamlepoll, epoll_wrapper)
2008-03-10 23:57:07 -06:00
OCamlProgram(ircd, ircd irc command iobuf client channel)
section
OCAMLPACKS[] +=
oUnit
NATIVE_ENABLED = false
tests.cmx:
tests.cmi:
tests.cmo:
tests$(EXT_OBJ):
2008-03-15 19:46:06 -06:00
dispatch_tests.cmx:
dispatch_tests.cmi:
dispatch_tests.cmo:
dispatch_tests$(EXT_OBJ):
OCamlProgram(tests, tests dispatch chat irc command iobuf client channel)
.PHONY: test
test: tests
./tests
.PHONY: clean
clean:
rm $(filter-proper-targets $(ls R, .))