File: Makefile

package info (click to toggle)
network-console 1.22
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 664 kB
  • ctags: 6
  • sloc: sh: 133; makefile: 46; ansic: 38
file content (16 lines) | stat: -rw-r--r-- 457 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CC = gcc
CFLAGS = -Os -fomit-frame-pointer
LDFLAGS = -lcrypt

all: gen-crypt

install-network-console:
	install -d $(DESTDIR)/bin
	install -m755 gen-crypt network-console network-console-menu $(DESTDIR)/bin
	install -d $(DESTDIR)/etc/ssh
	install -m644 sshd_config $(DESTDIR)/etc/ssh
	install -d $(DESTDIR)/usr/lib/post-base-installer.d/
	install -m755 post-base-installer $(DESTDIR)/usr/lib/post-base-installer.d/80network-console

clean:
	rm -f gen-crypt