File: Makefile

package info (click to toggle)
unicon 3.0.4-11etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 21,692 kB
  • ctags: 2,375
  • sloc: ansic: 185,227; cpp: 12,569; makefile: 832; sh: 310
file content (14 lines) | stat: -rw-r--r-- 398 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
prefix=/usr
all:
install:
	if [ ! -d $(prefix)/bin ] ; then mkdir -p $(prefix)/bin; fi
	echo Installing unicon startup script into system directory...
	install -m 755 -o root -g root unicon-start $(prefix)/bin/unicon-start
	install -m 755 -o root -g root unicon-init /etc/rc.d/init.d/unicon
	chkconfig --add unicon
	chkconfig unicon on
clean:
	rm -f core *.bak *~

distclean: clean
	rm -f Makefile