2009-01-25 00:48:56 +01:00
|
|
|
# Part of Grbl
|
|
|
|
#
|
2011-01-14 16:45:18 +01:00
|
|
|
# Copyright (c) 2009-2011 Simen Svale Skogsrud
|
2015-02-11 03:30:40 +01:00
|
|
|
# Copyright (c) 2012-2015 Sungeun K. Jeon
|
2009-01-25 00:48:56 +01:00
|
|
|
#
|
|
|
|
# Grbl is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Grbl is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Grbl. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
# This is a prototype Makefile. Modify it according to your needs.
|
|
|
|
# You should at least check the settings for
|
|
|
|
# DEVICE ....... The AVR device you compile for
|
|
|
|
# CLOCK ........ Target AVR clock rate in Hertz
|
|
|
|
# OBJECTS ...... The object files created from your source files. This list is
|
|
|
|
# usually the same as the list of source files with suffix ".o".
|
|
|
|
# PROGRAMMER ... Options to avrdude which define the hardware you use for
|
|
|
|
# uploading to the AVR and the interface where this hardware
|
|
|
|
# is connected.
|
|
|
|
# FUSES ........ Parameters for avrdude to flash the fuses appropriately.
|
|
|
|
|
2012-09-21 09:41:31 +02:00
|
|
|
DEVICE ?= atmega328p
|
2009-02-03 09:56:45 +01:00
|
|
|
CLOCK = 16000000
|
2012-09-21 09:41:31 +02:00
|
|
|
PROGRAMMER ?= -c avrisp2 -P usb
|
2015-02-11 03:30:40 +01:00
|
|
|
SOURCE = main.c motion_control.c gcode.c spindle_control.c coolant_control.c serial.c \
|
|
|
|
protocol.c stepper.c eeprom.c settings.c planner.c nuts_bolts.c limits.c \
|
|
|
|
print.c probe.c report.c system.c
|
|
|
|
BUILDDIR = build
|
|
|
|
SOURCEDIR = grbl
|
2010-03-07 20:29:18 +01:00
|
|
|
# FUSES = -U hfuse:w:0xd9:m -U lfuse:w:0x24:m
|
|
|
|
FUSES = -U hfuse:w:0xd2:m -U lfuse:w:0xff:m
|
2009-01-25 00:48:56 +01:00
|
|
|
|
|
|
|
# Tune the lines below only if you know what you are doing:
|
|
|
|
|
2012-09-21 09:41:31 +02:00
|
|
|
AVRDUDE = avrdude $(PROGRAMMER) -p $(DEVICE) -B 10 -F
|
2013-10-30 02:43:40 +01:00
|
|
|
COMPILE = avr-gcc -Wall -Os -DF_CPU=$(CLOCK) -mmcu=$(DEVICE) -I. -ffunction-sections
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2015-02-11 03:30:40 +01:00
|
|
|
OBJECTS = $(addprefix $(BUILDDIR)/,$(notdir $(SOURCE:.c=.o)))
|
|
|
|
|
2009-01-25 00:48:56 +01:00
|
|
|
# symbolic targets:
|
2009-01-29 09:58:29 +01:00
|
|
|
all: grbl.hex
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2015-02-11 03:30:40 +01:00
|
|
|
$(BUILDDIR)/%.o: $(SOURCEDIR)/%.c
|
2012-09-21 09:41:31 +02:00
|
|
|
$(COMPILE) -c $< -o $@
|
2015-02-11 03:30:40 +01:00
|
|
|
@$(COMPILE) -MM $< > $(BUILDDIR)/$*.d
|
2009-01-25 00:48:56 +01:00
|
|
|
|
|
|
|
.S.o:
|
2015-02-11 03:30:40 +01:00
|
|
|
$(COMPILE) -x assembler-with-cpp -c $< -o $(BUILDDIR)/$@
|
2009-01-25 00:48:56 +01:00
|
|
|
# "-x assembler-with-cpp" should not be necessary since this is the default
|
|
|
|
# file type for the .S (with capital S) extension. However, upper case
|
|
|
|
# characters are not always preserved on Windows. To ensure WinAVR
|
|
|
|
# compatibility define the file type manually.
|
|
|
|
|
2015-02-11 03:30:40 +01:00
|
|
|
#.c.s:
|
|
|
|
$(COMPILE) -S $< -o $(BUILDDIR)/$@
|
2009-01-25 00:48:56 +01:00
|
|
|
|
|
|
|
flash: all
|
2009-01-29 09:58:29 +01:00
|
|
|
$(AVRDUDE) -U flash:w:grbl.hex:i
|
2009-01-25 00:48:56 +01:00
|
|
|
|
|
|
|
fuse:
|
|
|
|
$(AVRDUDE) $(FUSES)
|
|
|
|
|
|
|
|
# Xcode uses the Makefile targets "", "clean" and "install"
|
|
|
|
install: flash fuse
|
|
|
|
|
|
|
|
# if you use a bootloader, change the command below appropriately:
|
|
|
|
load: all
|
2009-01-29 09:58:29 +01:00
|
|
|
bootloadHID grbl.hex
|
2009-01-25 00:48:56 +01:00
|
|
|
|
|
|
|
clean:
|
2015-02-11 03:30:40 +01:00
|
|
|
rm -f grbl.hex $(BUILDDIR)/*
|
2009-01-25 00:48:56 +01:00
|
|
|
|
|
|
|
# file targets:
|
2015-02-11 03:30:40 +01:00
|
|
|
$(BUILDDIR)/main.elf: $(OBJECTS)
|
|
|
|
$(COMPILE) -o $(BUILDDIR)/main.elf $(OBJECTS) -lm -Wl,--gc-sections
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2015-02-11 03:30:40 +01:00
|
|
|
grbl.hex: $(BUILDDIR)/main.elf
|
2009-01-29 09:58:29 +01:00
|
|
|
rm -f grbl.hex
|
2015-02-11 03:30:40 +01:00
|
|
|
avr-objcopy -j .text -j .data -O ihex $(BUILDDIR)/main.elf grbl.hex
|
|
|
|
avr-size --format=berkeley $(BUILDDIR)/main.elf
|
2009-01-25 00:48:56 +01:00
|
|
|
# If you have an EEPROM section, you must also create a hex file for the
|
|
|
|
# EEPROM and add it to the "flash" target.
|
|
|
|
|
|
|
|
# Targets for code debugging and analysis:
|
|
|
|
disasm: main.elf
|
2015-02-11 03:30:40 +01:00
|
|
|
avr-objdump -d $(BUILDDIR)/main.elf
|
2009-01-25 00:48:56 +01:00
|
|
|
|
|
|
|
cpp:
|
2015-02-11 03:30:40 +01:00
|
|
|
$(COMPILE) -E $(SOURCEDIR)/main.c
|
2012-11-05 22:48:09 +01:00
|
|
|
|
|
|
|
# include generated header dependencies
|
2015-02-11 03:30:40 +01:00
|
|
|
-include $(BUILDDIR)/$(OBJECTS:.o=.d)
|