mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
c15833f024
Merge of master-melb:xfs-cmds:24326a by kenmcd.
23 lines
544 B
Makefile
23 lines
544 B
Makefile
#
|
|
# Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved.
|
|
#
|
|
|
|
TOPDIR = ../..
|
|
include $(TOPDIR)/include/builddefs
|
|
|
|
BINTAR=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
LDIRT = *.gz
|
|
|
|
default install install-dev install-lib:
|
|
|
|
include $(BUILDRULES)
|
|
|
|
dist : default
|
|
@HERE=`pwd`; cd $${DIST_ROOT:-/}; \
|
|
$(SORT) -u $$HERE/../bin-manifest | $(AWK) ' \
|
|
$$1 == "f" { printf (".%s\n", $$6); } \
|
|
$$1 == "d" { next; } \
|
|
$$1 == "l" { printf (".%s\n", $$3); }' \
|
|
| $(TAR) -T - -cf - | $(ZIP) --best > $$HERE/$(BINTAR)
|
|
@echo Wrote: `pwd`/$(BINTAR)
|