URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [arch/] [i386/] [boot/] [compressed/] [Makefile.debug] - Rev 1781
Go to most recent revision | Compare with Previous | Blame | View Log
#
# linux/arch/i386/boot/compressed/Makefile
#
# create a compressed vmlinux image from the original vmlinux
#
OBJECTS = misc.o
CFLAGS = -g -O2 -DSTDC_HEADERS -DSTANDALONE_DEBUG -Wall
test-gzip: piggy.o $(OBJECTS)
$(CC) -g -o test-gzip $(OBJECTS) piggy.o
clean:
$(RM) inflate.o misc.o test-gzip
inflate.o: inflate.c gzip.h
misc.o: misc.c gzip.h
Go to most recent revision | Compare with Previous | Blame | View Log