Remove the test program, and the unnecessary time delay
[bootloader] / cli / Makefile
CommitLineData
9c66c9ff
JM
1CFLAGS= -g -fstack-protector-all -Wall -pedantic -std=gnu99 -fPIC -D_GNU_SOURCE
2LDFLAGS= $(CFLAGS)
3
4SRC=serial.c log.c boot.c protocol.c devices.c memory.c
5
6OBJS=$(SRC:%.c=%.o)
7
176952e7 8all: boot
9c66c9ff
JM
9
10boot: $(OBJS)
11
12%.o: %.c
13 $(CC) $(CFLAGS) -c -o $@ $<
14
15clean:
176952e7 16 rm -f $(OBJS) boot
9c66c9ff 17