File: Makefile

package info (click to toggle)
washngo 2.9-4.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,876 kB
  • ctags: 273
  • sloc: haskell: 54,162; makefile: 1,086; ansic: 305; sh: 153; sql: 13
file content (14 lines) | stat: -rw-r--r-- 221 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CGIDIR= /usr/lib/cgi-bin/WASH
CONFIGFLAGS= --prefix=$(CGIDIR)
INSTALLFLAGS=
SETUP= ./Setup.lhs

all:
	$(SETUP) configure $(CONFIGFLAGS)
	$(SETUP) build

install:
	$(SETUP) install $(INSTALLFLAGS)

clean:	
	$(SETUP) clean