2002-06-05 02:15:46 +05:30
|
|
|
# Makefile for busybox
|
|
|
|
#
|
2005-09-24 12:46:29 +05:30
|
|
|
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
2002-06-05 02:15:46 +05:30
|
|
|
#
|
2005-09-24 12:46:29 +05:30
|
|
|
# Licensed under the GPL v2, see the file LICENSE in this tarball.
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2006-03-02 23:03:25 +05:30
|
|
|
ifndef top_srcdir
|
2004-10-08 13:16:08 +05:30
|
|
|
top_srcdir=..
|
2006-03-02 23:03:25 +05:30
|
|
|
endif
|
|
|
|
ifndef top_builddir
|
2004-10-08 13:16:08 +05:30
|
|
|
top_builddir=..
|
2006-03-02 23:03:25 +05:30
|
|
|
endif
|
2004-10-08 13:16:08 +05:30
|
|
|
srcdir=$(top_srcdir)/loginutils
|
2002-06-05 02:15:46 +05:30
|
|
|
LOGINUTILS_DIR:=./
|
2004-10-08 13:16:08 +05:30
|
|
|
include $(top_builddir)/Rules.mak
|
|
|
|
include $(top_builddir)/.config
|
2002-06-05 02:15:46 +05:30
|
|
|
include Makefile.in
|
|
|
|
all: $(libraries-y)
|
2004-10-08 13:16:08 +05:30
|
|
|
-include $(top_builddir)/.depend
|
2002-06-05 02:15:46 +05:30
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o *.a $(AR_TARGET)
|
|
|
|
|