Makefile 367 B

12345678910
  1. all: hello.opt
  2. hello.opt: hello.cmx hello_stubs.o
  3. ocamlopt -o hello.opt hello_stubs.o hello.cmx -ccopt "$(shell pkg-config --cflags --libs sdl2 cairo)"
  4. hello.cmx: hello.ml
  5. ocamlopt -c hello.ml -ccopt "$(shell pkg-config --cflags --libs sdl2 cairo)"
  6. hello_stubs.o: hello_stubs.c
  7. ocamlopt -c hello_stubs.c -ccopt "$(shell pkg-config --cflags --libs sdl2 cairo)"