irc-bot/OMakefile

33 lines
509 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):
OCamlProgram(tests, tests chat irc command iobuf client channel)
.PHONY: test
test: tests
./tests
.PHONY: clean
clean:
rm $(filter-proper-targets $(ls R, .))