File: Makefile

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

PROG  = filemanager
SOURCES = FileManager.hs

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

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

HC=ghc