File: Makefile

package info (click to toggle)
lphdisk 0.9.1.ds1-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 212 kB
  • ctags: 218
  • sloc: ansic: 1,220; makefile: 39
file content (24 lines) | stat: -rw-r--r-- 374 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# Makefile for lphdisk - hibernation partition creation utility
#
#   lphdisk 0.9.1
#

INSTALL_PREFIX = /usr/local

CFLAGS = -g -Wall
LDLIBS = -lx86

all:       lphdisk

install: all
	install -m 755 lphdisk $(INSTALL_PREFIX)/sbin
	install -m 644 lphdisk.8 $(INSTALL_PREFIX)/man/man8

clean:
	rm -f *.o
	rm -f lphdisk

distclean: clean

.PHONY: all install clean distclean