File: Makefile

package info (click to toggle)
ocaml-shout 0.2.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 612 kB
  • sloc: ansic: 410; ml: 206; makefile: 93; sh: 4
file content (21 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# OCaml-Shout examples.
#
# Copyright 2003-2006 by the Savonet team
#
# $Id: Makefile 4694 2007-10-23 23:33:11Z smimram $

all: shoutfile

clean: clean-shoutfile

distclean:
	rm -rf autom4te.cache config.log config.status
	rm -f Makefile.shoutfile

shoutfile:
	$(MAKE) -f Makefile.shoutfile

clean-shoutfile:
	$(MAKE) -f Makefile.shoutfile clean

.PHONY: clean-shoutfile distclean clean all