ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/ozone/mgar/pkg/Makefile
Revision: 1
Committed: Sat Jun 20 14:58:51 2026 UTC (4 weeks, 3 days ago) by operz
File size: 412 byte(s)
Log Message:
Initial import of OZSW mgar build tree

File Contents

# Content
1 # vim: ft=make ts=4 sw=4 noet
2 #
3 # Top-level Makefile for OZSW packages.
4 # Run 'gmake -C <pkgname> [all|fetch|clean]' or 'gmake <pkgname>' from here.
5 #
6 # Bootstrap build order:
7 # zlib -> binutils -> gcc -> cacert -> openssl -> curl -> (rest)
8
9 PKGS = zlib binutils gcc cacert openssl curl gmake
10
11 $(PKGS):
12 $(MAKE) -C $@ all
13
14 fetch-all:
15 for p in $(PKGS); do $(MAKE) -C $$p fetch; done
16
17 .PHONY: $(PKGS) fetch-all