File: Makefile

package info (click to toggle)
elk 3.0-6
  • links: PTS
  • area: main
  • in suites: potato, slink
  • size: 4,068 kB
  • ctags: 3,123
  • sloc: ansic: 20,686; lisp: 5,232; makefile: 419; awk: 91; sh: 21
file content (24 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
SHELL=/bin/sh
MAKE=make

all: default

Makefile.local: ../../config/system ../../config/site
	$(SHELL) ./build

default: Makefile.local
	$(MAKE) -f Makefile.local

install: Makefile.local
	$(MAKE) -f Makefile.local install

localize: Makefile.local

lint: Makefile.local
	$(MAKE) -f Makefile.local lint

clean: Makefile.local
	$(MAKE) -f Makefile.local clean

distclean: Makefile.local
	$(MAKE) -f Makefile.local distclean