summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 41ebd02..98738b6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,7 @@
CC = avr-gcc
MCU = atmega328p
PORT = /dev/cuaU0
-TARGET = fend
-FPM_NEWPWD = 0x00
+TARGET = app
SRC = main.c fpm.c
OBJ = $(SRC:.c=.o)
@@ -13,7 +12,6 @@ CFLAGS += -Wall
CFLAGS += -mmcu=$(MCU)
CFLAGS += -DBAUD=57600
CFLAGS += -DF_CPU=16000000UL
-CFLAGS += -DDEBUG=0
CFLAGS += -DFPM_PWD=$(FPM_PWD)
CFLAGS += -ffunction-sections -fdata-sections