head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2002.05.13.22.42.31;	author simons;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Initial revision.
@
text
@OBJS = simpleinit.o

CC = or32-uclibc-gcc
STRIP = or32-uclibc-strip

PRGS = init

all: $(PRGS)

init: $(OBJS)
	$(CC) $(CFLAGS) -r -d $(OBJS) -o $@@
	$(STRIP) -g $@@

clean:
	rm -f *.[oa] *.coff *~ core init
@
