summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/insmod-busybox/Makefile
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2005-06-15 10:21:34 +0000
committerMystery Man <unknown@mandriva.org>2005-06-15 10:21:34 +0000
commitced1ffcebee246fd51572566f1b4f08e6b981c23 (patch)
tree01d53c7928a67bf29513da0e079096df3ca1ddaa /mdk-stage1/insmod-busybox/Makefile
parent43d37ea8829a56d0b864c8665b31da35bb588d51 (diff)
downloaddrakx-backup-do-not-use-ced1ffcebee246fd51572566f1b4f08e6b981c23.tar
drakx-backup-do-not-use-ced1ffcebee246fd51572566f1b4f08e6b981c23.tar.gz
drakx-backup-do-not-use-ced1ffcebee246fd51572566f1b4f08e6b981c23.tar.bz2
drakx-backup-do-not-use-ced1ffcebee246fd51572566f1b4f08e6b981c23.tar.xz
drakx-backup-do-not-use-ced1ffcebee246fd51572566f1b4f08e6b981c23.zip
This commit was manufactured by cvs2svn to create tagV10_3_0_24mdk
'V10_3_0_24mdk'.
Diffstat (limited to 'mdk-stage1/insmod-busybox/Makefile')
-rw-r--r--mdk-stage1/insmod-busybox/Makefile43
1 files changed, 0 insertions, 43 deletions
diff --git a/mdk-stage1/insmod-busybox/Makefile b/mdk-stage1/insmod-busybox/Makefile
deleted file mode 100644
index 236874f96..000000000
--- a/mdk-stage1/insmod-busybox/Makefile
+++ /dev/null
@@ -1,43 +0,0 @@
- #******************************************************************************
- #
- # insmod from busybox (i386 only)
- #
- # $Id$
- #
- # Copyright (C) 1999,2000 by Lineo, inc.
- #
- #*****************************************************************************
-
-top_dir = ..
-
-include $(top_dir)/Makefile.common
-
-
-all: insmod libinsmod.a
-
-clean:
- rm -f *.o insmod libinsmod.a
-
-
-FLAGS = -c -Wall -Os -fomit-frame-pointer -D_GNU_SOURCE -DBB_VER='"0.60.5"' -DBB_BT='"2003.04.16-15:25+0000"'
-
-
-insmod: insmod-frontend.o insmod.o utility-standalone.o
- $(DIET) gcc -o $@ $^
- $(STRIPCMD) $@
-
-libinsmod.a: insmod.o utility.o
- ar cru $@ $^
- ranlib $@
-
-insmod-frontend.o: insmod-frontend.c busybox.h
- $(DIET) gcc $(FLAGS) $(INCLUDES) insmod-frontend.c
-
-utility.o: utility.c busybox.h
- $(DIET) gcc $(FLAGS) $(INCLUDES) utility.c
-
-utility-standalone.o: utility.c busybox.h
- $(DIET) gcc $(FLAGS) $(INCLUDES) -o $@ -D_STANDALONE_ utility.c
-
-insmod.o: insmod.c busybox.h
- $(DIET) gcc $(FLAGS) $(INCLUDES) insmod.c