File: Makefile

package info (click to toggle)
haskell-pango 0.13.11.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 348 kB
  • sloc: haskell: 77; ansic: 35; makefile: 10
file content (11 lines) | stat: -rw-r--r-- 161 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11

PROG  = layout 
SOURCES = Layout.hs

$(PROG) : $(SOURCES)
	$(HC) --make $< -o $@ $(HCFLAGS)

clean:
	rm -f $(SOURCES:.hs=.hi) $(SOURCES:.hs=.o) $(PROG)

HC=ghc