blob: 238a82126e2b852ceda69879b5ab2defa6e0ce25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# $FreeBSD$
#
# Top level Makefile for PicoBSD
# Please submit any changes to the freebsd-small mailing list for
# discussion prior to committing.
MAINTAINER= freebsd-small
# install looks like a partially completed target,
# but I don't want to finish this work.
# FIXME
# CONFIGS = custom dial isp net router
CONFIGS = custom
all clean tidy:
for i in ${CONFIGS}; do \
(cd $$i; \
echo '----- Building in' $$i; \
make $@); \
done
@if [ "$@" = "clean" ]; then \
rm -f *~; \
fi
floppy floppy2:
@echo Please build this target from one of the ${CONFIGS} subdirectories.
# Build one subdirectory
${CONFIGS}:
cd $@; make clean all
|