File: Makefile

package info (click to toggle)
lablgtk-extras 1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 708 kB
  • sloc: ml: 8,074; makefile: 205
file content (14 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
include ../master.Makefile

EXAMPLES=configwin_example.x configwin_example2.x okey_example.x

all: $(EXAMPLES)

clean:
	rm -f *.cm*
	rm $(EXAMPLES)

.SUFFIXES: .ml .x
%.x: %.ml
	$(OCAMLFIND) ocamlc -package lablgtk2-extras.configwin -linkpkg -o $@ $<