crashtest-r0ket/firmware/filesystem/Makefile
Stefan `Sec` Zehl f3f1c01d57 Add f_get_rc_string to get result code strings.
Probably only use for debugging
2011-07-13 00:22:18 +02:00

28 lines
798 B
Makefile

##########################################################################
# User configuration and firmware specific object files
##########################################################################
OBJS =
OBJS += ff.o
OBJS += diskio.o
OBJS += iobase.o
OBJS += mmc.o
OBJS += at45db041d.o
OBJS += util.o
LIBNAME=fat
##########################################################################
# GNU GCC compiler flags
##########################################################################
ROOT_PATH?= ..
INCLUDE_PATHS = -I$(ROOT_PATH) -I../core -I.
include $(ROOT_PATH)/Makefile.inc
##########################################################################
# Actual work
##########################################################################
include $(ROOT_PATH)/Makefile.util