From 845d249d9bf65d4a8eea47cabab813cbab65a4ea Mon Sep 17 00:00:00 2001 From: Uwe Seimet <48174652+uweseimet@users.noreply.github.com> Date: Fri, 23 Jul 2021 15:41:07 +0200 Subject: [PATCH] Removed unused code (#147) --- src/raspberrypi/Makefile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/raspberrypi/Makefile b/src/raspberrypi/Makefile index eadac00f..2a069f24 100644 --- a/src/raspberrypi/Makefile +++ b/src/raspberrypi/Makefile @@ -1,15 +1,11 @@ .DEFAULT_GOAL: all ## Optional build flags: -## ARCH=arm : Specify which target platform you're compiling -## for. This will default to arm, which is typical -## on a Raspberry Pi. ## CROSS_COMPILE=arm-linux-gnueabihf- : Specify which compiler ## toolchain to use. This will default to arm-linux- ## gnueabihf-, which is typical on a Raspberry Pi. ## To cross compile on a x86_64 system set these to: ## ARM=x86_64 CROSS_COMPILE=x86_64-linux-gnu-cpp -ARCH ?= arm CROSS_COMPILE ?= arm-linux-gnueabihf- CC = $(CROSS_COMPILE)gcc @@ -87,10 +83,6 @@ SRC_RASCSI = \ fileio.cpp\ rascsi_version.cpp \ rasutil.cpp -# os.cpp -# rasctl_command.cpp -# rascsi_mgr.cpp -# command_thread.cpp SRC_RASCSI += $(shell find ./controllers -name '*.cpp') SRC_RASCSI += $(shell find ./devices -name '*.cpp') SRC_RASCSI += $(SRC_PROTOBUF) @@ -107,7 +99,6 @@ SRC_RASCTL = \ rasctl.cpp\ rascsi_version.cpp \ rasutil.cpp -# rasctl_command.cpp SRC_RASCTL += $(SRC_PROTOBUF) SRC_RASDUMP = \