The unified diff between revisions [7f3278b1..] and [be147b11..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'Makefile'
# # old_revision [7f3278b164104bb0564a391a1f7b4fd955a3904a] # new_revision [be147b11caac304fda1579ac71017eecc3bb79e0] # # patch "Makefile" # from [7a1a49fb3e2f7d3f482e493962f2f02dae51aa93] # to [0d87a7bdf64f764dc4892656b9cd1e2613f05867] # ============================================================ --- Makefile 7a1a49fb3e2f7d3f482e493962f2f02dae51aa93 +++ Makefile 0d87a7bdf64f764dc4892656b9cd1e2613f05867 @@ -7,7 +7,7 @@ CSRCS+=thrust.c CSRCS+=fisqrt.c stick.c trig.c motor.c led.c watchdog.c panic.c status.c CSRCS+=thrust.c -#PROJOPTS=-DUSE_UART -DSEND_DCM +#PROJOPTS=-DUSE_UART -DSEND_DCM -DSTICK_DEBUG_CALIBRATE COPTIM?=-O1 CFLAGS=-march=armv4t -msoft-float $(COPTIM) -Wall -Werror -Wextra $(PROJOPTS) @@ -37,6 +37,8 @@ OBJS=$(SOBJS) $(COBJS) .SUFFIXES: .elf .hex .bin +$(OBJS): Makefile + $(NAME).elf: $(OBJS) $(CC) $(CFLAGS) -nostdlib -nostartfiles -T $(LDSCRIPT) -Wl,-Map -Wl,$(NAME).map -o $(NAME).elf $(OBJS) -lgcc