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 (15 lines) | stat: -rwxr-xr-x 311 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all: lat thr

lat: local_lat.hs remote_lat.hs
	ghc --make -threaded local_lat.hs
	ghc --make -threaded remote_lat.hs

thr: local_thr.hs remote_thr.hs
	ghc --make -threaded local_thr.hs
	ghc --make -threaded remote_thr.hs

.PHONY: clean
clean:
	-rm -f *.o *.hi
	-rm -f local_lat remote_lat local_thr remote_thr