aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 2b0b6a2..c488aa7 100644
--- a/Makefile
+++ b/Makefile
@@ -9,11 +9,9 @@ OBJS=$(SRCS:.c=.o)
BUILDROOT_DIR=buildroot-2020.11.1
ifeq ($(PLATFORM), native)
- SIZE=size
STRIP=strip
else
STRIP=$(BUILDROOT_DIR)/output/host/bin/arm-linux-strip
- SIZE=$(BUILDROOT_DIR)/output/host/bin/arm-linux-size
CC=$(BUILDROOT_DIR)/output/host/bin/arm-linux-cc
endif
@@ -22,8 +20,7 @@ endif
ctaklm: src/ctaklm.o $(OBJS)
$(CC) $(CFLAGS) src/ctaklm.o $(OBJS) -o ctaklm
-# $(STRIP) ctaklm
- $(SIZE) ctaklm
+ $(STRIP) ctaklm
pptdb: src/pptdb.o $(OBJS)
$(CC) $(CFLAGS) src/pptdb.o $(OBJS) -o pptdb
@@ -31,7 +28,6 @@ pptdb: src/pptdb.o $(OBJS)
ct1986: src/ct1986.o $(OBJS)
$(CC) $(CFLAGS) src/ct1986.o $(OBJS) -o ct1986
$(STRIP) ct1986
- $(SIZE) ct1986
all: ctaklm ct1986
ifneq ($(PLATFORM), native)