#
# Makefile for the linux memory manager.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definition is now in the main makefile...

O_TARGET := lab.o

export-objs := bootldr.o


obj-$(CONFIG_LAB) += bootldr.o serial.o util.o bootldr-main.o bootldr-commands.o getcmd.o

include $(TOPDIR)/Rules.make
CPPFLAGS += -DDATE=\"`date +%y-%m-%d_%H:%M`\"