File: Makefile

package info (click to toggle)
haskell-zeromq4-haskell 0.8.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: haskell: 1,932; makefile: 21
file content (11 lines) | stat: -rwxr-xr-x 194 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
all: chat

chat: display.hs prompt.hs
	cabal exec ghc -- --make -threaded display.hs
	cabal exec ghc -- --make -threaded prompt.hs

.PHONY: clean
clean:
	-rm -f *.o *.hi
	-rm -f display prompt