File: Makefile

package info (click to toggle)
haskell-hxt-regex-xmlschema 9.2.0.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 268 kB
  • sloc: haskell: 3,182; makefile: 216
file content (14 lines) | stat: -rw-r--r-- 151 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all	: colorize

install	: all
	sudo cp colorize /usr/local/bin

clean	:
	cabal clean

colorize:
	cabal install

.PHONY	: all install clean colorize