File: Makefile

package info (click to toggle)
lilo 1%3A23.2-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,368 kB
  • sloc: ansic: 13,187; asm: 10,441; perl: 1,095; sh: 989; makefile: 582
file content (17 lines) | stat: -rw-r--r-- 256 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- makefile -*-

# adding variables
include ../make.vars

all:

install:
	mkdir -p $$DESTDIR$(CFG_DIR)
	install -m 0644 lilo.example.conf $$DESTDIR$(CFG_DIR)/lilo.conf_example

clean:

distclean:

uninstall:
	rm -f $$DESTDIR$(CFG_DIR)/lilo.conf_example