Last change
on this file since 1609 was 821, checked in by Bruno Cornec, 19 years ago |
Addition of busybox 1.2.1 as a mindi-busybox new package
This should avoid delivering binary files in mindi not built there (Fedora and Debian are quite serious about that)
|
File size:
602 bytes
|
Line | |
---|
1 | # Makefile for busybox
|
---|
2 | #
|
---|
3 | # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
---|
4 | #
|
---|
5 | # Licensed under the GPL v2, see the file LICENSE in this tarball.
|
---|
6 |
|
---|
7 | ifndef top_srcdir
|
---|
8 | top_srcdir=..
|
---|
9 | endif
|
---|
10 | ifndef top_builddir
|
---|
11 | top_builddir=..
|
---|
12 | endif
|
---|
13 | srcdir=$(top_srcdir)/libbb
|
---|
14 | LIBBB_DIR:=./
|
---|
15 |
|
---|
16 | # Ensure "all" is still the default target when make is run by itself in
|
---|
17 | # libbb, even if the files we include define rules for targets.
|
---|
18 |
|
---|
19 | all:
|
---|
20 |
|
---|
21 | include $(top_srcdir)/Rules.mak
|
---|
22 | include $(top_builddir)/.config
|
---|
23 | include Makefile.in
|
---|
24 | all: $(libraries-y)
|
---|
25 | -include $(top_builddir)/.depend
|
---|
26 |
|
---|
27 | clean:
|
---|
28 | rm -f *.o *.a $(AR_TARGET)
|
---|
29 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.