2008-06-06 05:36:51 -07:00
|
|
|
#
|
|
|
|
# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
|
|
|
|
# Use is subject to license terms.
|
|
|
|
#
|
2012-05-10 12:01:43 -07:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2008-06-06 05:36:51 -07:00
|
|
|
#
|
2012-05-10 12:01:43 -07:00
|
|
|
#ident "$Id: Makefile-devl.targ,v 1.4 2012/03/06 13:13:40 gerv%gerv.net Exp $"
|
2008-06-06 05:36:51 -07:00
|
|
|
#
|
|
|
|
|
|
|
|
include $(srcdir)/../proto64.mk
|
|
|
|
|
|
|
|
pkginfo: pkginfo.tmpl ../awk_pkginfo
|
|
|
|
$(RM) $@; nawk -f ../awk_pkginfo $(srcdir)/$@.tmpl > $@
|
|
|
|
|
|
|
|
pkg: $(PKGARCHIVE)
|
|
|
|
cat $(srcdir)/prototype | sed $(sed_proto64) > prototype
|
|
|
|
cp $(srcdir)/depend .
|
|
|
|
pkgmk -f prototype -d $(PKGARCHIVE) -r $(ROOT) -o $(PACKAGE)
|
|
|
|
|
|
|
|
$(PKGARCHIVE):
|
|
|
|
[ -d $(PKGARCHIVE) ] || mkdir -p $(PKGARCHIVE)
|
|
|
|
|
|
|
|
$(DATAFILES): %: $(srcdir)/../common_files/%
|
|
|
|
$(RM) $@; cp $(srcdir)/../common_files/$@ $@
|
|
|
|
|
|
|
|
$(MACHDATAFILES): %: $(srcdir)/../common_files/%_$(MACH)
|
|
|
|
$(RM) $@; cp $(srcdir)/../common_files/$@_$(MACH) $@
|
|
|
|
|
|
|
|
clobber clean::
|
|
|
|
-$(RM) $(CLOBBERFILES) $(CLEANFILES)
|
|
|
|
|
|
|
|
.PHONY: pkg
|