blob: 817205b56d5d9c7e367308fc602a40d7cdc905b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Makefile - one file to rule them all, one file to bind them
#
# Copyright (C) 2007 Timo Teräs <timo.teras@iki.fi>
# All rights reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 3 as published
# by the Free Software Foundation. See http://www.gnu.org/ for details.
all:
clean:
install::
$(INSTALLDIR) $(DESTDIR)$(SBINDIR)
$(INSTALL) apk_create $(DESTDIR)$(SBINDIR)
$(INSTALLDIR) $(DESTDIR)/lib/apk
$(INSTALL) libutil.sh $(DESTDIR)/lib/apk
|