URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [userland/] [init/] [Makefile] - Rev 851
Go to most recent revision | Compare with Previous | Blame | View Log
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
Go to most recent revision | Compare with Previous | Blame | View Log