Changeset 12 for tt-loader/Makefile
- Timestamp:
- May 23, 2008, 12:59:00 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tt-loader/Makefile
r11 r12 5 5 LDFLAGS = -g $(LIBS) 6 6 APP_NAME = tt-loader 7 APP_VERSION = 0. 17 APP_VERSION = 0.2 8 8 9 9 # Adapt this to your system … … 11 11 DIS_ADDR ?= 0 12 12 13 OBJS = main.o 13 # You can overide the name of the extracted MTD partition to get the kernel 14 KERNEL_MTD ?= mtd4 15 16 OBJS = main.o crc32.o 14 17 15 18 all: $(APP_NAME) … … 36 39 rm -f $(@F).elf 37 40 41 # Extract kernel from mtd4 nand partition extraction 42 kernel.bin: $(KERNEL_MTD) 43 ./kernel-extract.sh $^ $@ 44 38 45 .PHONY: all clean 2nd
Note: See TracChangeset
for help on using the changeset viewer.