blob: e69244d73ee053aa2fc91528aed324684816fe7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
TARGET=motor
SOURCES=motor1.c motor2.c
include ../../picmake.inc
CFLAGS += -DPORT=12
$(BUILDDIR)/$(TARGET).hex: $(OBJS) $(PICDEPS)
cd $(BUILDDIR) && gplink -m -c -o $(TARGET).hex $(SOURCES:.c=.o) $(LDFLAGS)
perl $(BASEDIR)/tools/checkmap $(BUILDDIR)/$(TARGET).map
include ../../make.inc
include $(SOURCES:.c=.dep)
|