summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/mkinitrd_helper/Makefile
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-03-16 23:46:22 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-03-16 23:46:22 +0000
commit138dbc4500e0463b1e430def67cb822c6917e032 (patch)
tree30ee9800cb19b5f1367e3ff972e7498adabe4476 /mdk-stage1/mkinitrd_helper/Makefile
parentc7b30e1c21b1275c87021fe03ae7204801bc9646 (diff)
downloaddrakx-backup-do-not-use-138dbc4500e0463b1e430def67cb822c6917e032.tar
drakx-backup-do-not-use-138dbc4500e0463b1e430def67cb822c6917e032.tar.gz
drakx-backup-do-not-use-138dbc4500e0463b1e430def67cb822c6917e032.tar.bz2
drakx-backup-do-not-use-138dbc4500e0463b1e430def67cb822c6917e032.tar.xz
drakx-backup-do-not-use-138dbc4500e0463b1e430def67cb822c6917e032.zip
write down mkinitrd_helper
Diffstat (limited to 'mdk-stage1/mkinitrd_helper/Makefile')
-rw-r--r--mdk-stage1/mkinitrd_helper/Makefile46
1 files changed, 46 insertions, 0 deletions
diff --git a/mdk-stage1/mkinitrd_helper/Makefile b/mdk-stage1/mkinitrd_helper/Makefile
new file mode 100644
index 000000000..e1397ef60
--- /dev/null
+++ b/mdk-stage1/mkinitrd_helper/Makefile
@@ -0,0 +1,46 @@
+ #******************************************************************************
+ #
+ # Guillaume Cottenceau (gc@mandrakesoft.com)
+ #
+ # Copyright 2000 MandrakeSoft
+ #
+ # This software may be freely redistributed under the terms of the GNU
+ # public license.
+ #
+ # You should have received a copy of the GNU General Public License
+ # along with this program; if not, write to the Free Software
+ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ #
+ #*****************************************************************************
+
+top_dir = ..
+
+include $(top_dir)/Makefile.common
+
+
+VERSION = 1.0
+
+DEFS = -DVERSION=\"$(VERSION)\"
+
+
+MKINITRD_HELPER_SRC = mkinitrd_helper.c
+MKINITRD_HELPER_LIBS = ../insmod-busybox/libinsmod-DIET.a
+
+MKINITRD_HELPER_OBJS = $(subst .c,.o,$(MKINITRD_HELPER_SRC))
+
+BIN = mkinitrd_helper
+
+all: $(BIN)
+
+clean:
+ rm -f *.o $(BIN)
+
+FLAGS = -Wall -Werror -Os -fomit-frame-pointer -c
+
+
+$(MKINITRD_HELPER_OBJS): %.o: %.c
+ $(CC) $(DEFS) $(DIETLIBC_INCLUDES) -I.. -c $< -o $@
+
+mkinitrd_helper: $(MKINITRD_HELPER_OBJS) $(MKINITRD_HELPER_LIBS) $(DIETLIBC_LIBC)
+ $(CC) $(DIETLIBC_LDFLAGS_STAGE1) -o $@ $^
+ $(STRIPCMD) $@