Update mkrk27boot Makefile for libtools.make changes.
Change-Id: Iebcb3be6024c2fa6ec94a38b8bb1cb0c7274eb85
This commit is contained in:
parent
e073bc9484
commit
071ccc78a9
1 changed files with 6 additions and 44 deletions
|
@ -16,62 +16,24 @@ BUILDDATE=$(shell date -u +'-DYEAR=%Y -DMONTH=%m -DDAY=%d')
|
|||
INCLUDE = -I$(EXPORT) -I$(FIRMWARE)include -I$(FIRMWARE)target/hosted -I$(FIRMWARE)target/hosted/sdl
|
||||
DEFINES = -DTEST_FAT -DDISK_WRITE -DHAVE_FAT16SUPPORT -D__PCTOOL__
|
||||
|
||||
SIM_FLAGS = -Wall -g -std=gnu99 -Wno-pointer-sign $(DEFINES) $(BUILDDATE) -I. $(INCLUDE) -I$(FIRMWARE)/libc/include
|
||||
FLAGS = -Wall -g -std=gnu99 -Wno-pointer-sign $(DEFINES) -I. $(INCLUDE)
|
||||
CFLAGS = -Wall -g -std=gnu99 -Wno-pointer-sign $(DEFINES) -I. $(INCLUDE)
|
||||
SIM_FLAGS = $(CFLAGS) $(BUILDDATE) -I$(FIRMWARE)/libc/include
|
||||
|
||||
OUTPUT = mkrk27boot
|
||||
|
||||
|
||||
# inputs
|
||||
LIBSOURCES := $(DRIVERS)fat.c $(FIRMWARE)libc/ctype.c $(FIRMWARE)libc/strtok.c \
|
||||
$(FIRWARE)libc/errno.c $(FIRMWARE)common/strlcpy.c $(FIRMWARE)common/unicode.c \
|
||||
$(FIRMWARE)libc/errno.c $(FIRMWARE)common/strlcpy.c $(FIRMWARE)common/unicode.c \
|
||||
$(FIRMWARE)common/file.c $(FIRMWARE)common/dir_uncached.c $(FIRMWARE)common/disk.c ata-sim.c mkrk27boot.c
|
||||
|
||||
SOURCES := $(LIBSOURCES) main.c
|
||||
|
||||
include ../libtools.make
|
||||
|
||||
define sim_compile
|
||||
SIMOBJS = $(addprefix $(OBJDIR),fat.o ctype.o strtok.o errno.o disk.o dir_uncached.o file.o unicode.o strlcpy.o)
|
||||
|
||||
$(SIMOBJS):
|
||||
@echo CC $<
|
||||
$(SILENT)mkdir -p $(dir $@)
|
||||
$(SILENT)$(CROSS)$(CC) $(SIM_FLAGS) -c -o $@ $<
|
||||
endef
|
||||
|
||||
define compile
|
||||
@echo CC $<
|
||||
$(SILENT)mkdir -p $(dir $@)
|
||||
$(SILENT)$(CROSS)$(CC) $(FLAGS) -c -o $@ $<
|
||||
endef
|
||||
|
||||
$(OBJDIR)fat.o: $(DRIVERS)fat.c $(EXPORT)fat.h $(EXPORT)ata.h autoconf.h
|
||||
$(sim_compile)
|
||||
|
||||
$(OBJDIR)ctype.o: $(FIRMWARE)libc/ctype.c autoconf.h
|
||||
$(sim_compile)
|
||||
|
||||
$(OBJDIR)strtok.o: $(FIRMWARE)libc/strtok.c $(FIRMWARE)libc/include/string.h autoconf.h
|
||||
$(sim_compile)
|
||||
|
||||
$(OBJDIR)errno.o: $(FIRMWARE)libc/errno.c $(FIRMWARE)libc/include/errno.h autoconf.h
|
||||
$(sim_compile)
|
||||
|
||||
$(OBJDIR)disk.o: $(FIRMWARE)common/disk.c autoconf.h
|
||||
$(sim_compile)
|
||||
|
||||
$(OBJDIR)dir_uncached.o: $(FIRMWARE)common/dir_uncached.c autoconf.h
|
||||
$(sim_compile)
|
||||
|
||||
$(OBJDIR)file.o: $(FIRMWARE)common/file.c $(FIRMWARE)/include/file.h autoconf.h
|
||||
$(sim_compile)
|
||||
|
||||
$(OBJDIR)unicode.o: $(FIRMWARE)common/unicode.c autoconf.h
|
||||
$(sim_compile)
|
||||
|
||||
$(OBJDIR)strlcpy.o: $(FIRMWARE)common/strlcpy.c autoconf.h
|
||||
$(sim_compile)
|
||||
|
||||
$(OBJDIR)ata-sim.o: ata-sim.c $(EXPORT)ata.h autoconf.h
|
||||
$(compile)
|
||||
|
||||
$(OBJDIR)mkrk27boot.o: mkrk27boot.c mkrk27boot.h autoconf.h
|
||||
$(compile)
|
||||
|
|
Loading…
Reference in a new issue