mirror of
https://github.com/nealey/irc-bot
synced 2025-01-07 20:00:36 -07:00
4b2a60ec71
This is where I realized that there's no point in passing around a "server" object, since it's entirely reasonable to expect one server per running instance.
23 lines
360 B
Text
23 lines
360 B
Text
USE_OCAMLFIND = true
|
|
OCAMLPACKS[] =
|
|
equeue
|
|
pcre
|
|
str
|
|
|
|
.DEFAULT: ircd
|
|
|
|
OCamlProgram(ircd, ircd irc command client channel)
|
|
|
|
section
|
|
OCAMLPACKS[] +=
|
|
oUnit
|
|
|
|
tests.cmx:
|
|
tests.cmi:
|
|
tests$(EXT_OBJ):
|
|
|
|
OCamlProgram(tests, tests chat ircd irc command client channel)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm $(filter-proper-targets $(ls R, .))
|