summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/insmod-modutils/obj/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-modutils/obj/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-modutils/obj/Makefile')
-rw-r--r--mdk-stage1/insmod-modutils/obj/Makefile38
1 files changed, 0 insertions, 38 deletions
diff --git a/mdk-stage1/insmod-modutils/obj/Makefile b/mdk-stage1/insmod-modutils/obj/Makefile
deleted file mode 100644
index d44b2a6c6..000000000
--- a/mdk-stage1/insmod-modutils/obj/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
- #******************************************************************************
- #
- # insmod from modutils (generic)
- #
- # $Id$
- #
- # Copyright 1996, 1997 Linux International.
- #
- #*****************************************************************************
-
-top_dir = ../..
-
-include $(top_dir)/Makefile.common
-
-
-all: libobj.a
-
-clean:
- rm -f *.o *.a
-
-
-INCS = -I./../include
-
-DEFS = -D_GNU_SOURCE -DELF_MACHINE_H='"elf_$(ARCH).h"' -DARCH_$(ARCH) -DCONFIG_ROOT_CHECK_OFF=0
-
-ifeq (x86_64, $(ARCH))
-DEFS += -Wno-error
-endif
-
-OBJS = obj_kallsyms.o obj_common.o obj_load.o obj_reloc.o obj_$(ARCH).o \
- obj_gpl_license.o
-
-libobj.a: $(OBJS)
- ar cru $@ $^
- ranlib $@
-
-%.o: %.c
- $(DIET) gcc $(CFLAGS) $(DEFS) $(INCS) $(INCLUDES) -c $<