Archived
1
0
Fork 0

adding led3.c

This commit is contained in:
Henrik Hautakoski 2011-10-12 18:51:44 +02:00
parent 836a7983c1
commit e3aa56071c
2 changed files with 56 additions and 1 deletions

View file

@ -4,7 +4,7 @@ CFLAGS = -Os -Wall -g -mmcu=msp430x2012
LD = $(CC)
LDFLAGS =
PROGRAMS = led1.elf led2.elf
PROGRAMS = led1.elf led2.elf led3.elf
.PHONY : clean distclean
@ -12,6 +12,7 @@ all : $(PROGRAMS)
led1.elf : led1.o
led2.elf : led2.o
led3.elf : led3.o
%.elf :
$(LD) -o $@ $^