Add externs to avoid multiple definitions, and then add missing definitions.
[rrq/maintain_lilo.git] / scripts / Makefile
1 # -*- makefile -*-
2 #
3 # Copyright 2009-2014 Joachim Wiedorn
4 # All rights reserved.
5
6 # Licensed under the terms contained in the file 'COPYING'
7 # in the source directory.
8 #
9
10 # adding variables
11 include ../make.vars
12
13 all:
14
15 install:
16         mkdir -p $$DESTDIR$(USRSBIN_DIR)
17
18         install -m 0755  liloconfig  $$DESTDIR$(USRSBIN_DIR)
19         install -m 0755  lilo-uuid-diskid  $$DESTDIR$(USRSBIN_DIR)
20
21 clean:
22
23 distclean:
24
25 uninstall:
26         rm -f $$DESTDIR$(USRSBIN_DIR)/liloconfig
27         rm -f $$DESTDIR$(USRSBIN_DIR)/lilo-uuid-diskid
28