From 4cf1efea7ab3f71907a5b81761827f480a237c10 Mon Sep 17 00:00:00 2001 From: localhorst Date: Mon, 22 Aug 2022 14:36:52 +0200 Subject: [PATCH] updated readme for submodules --- README.md | 7 +++++++ makefile | 2 -- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d6f37f0..5ed75bc 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,8 @@ ## Debian Build Notes * `apt-get install ncurses-dev git make g++` +* `git submodule init` +* `git submodule update` * `make release` ## Create Standalone with Debian 11 @@ -29,6 +31,11 @@ Instructions how to create a standalone machine that boots directly to reHDD. Th clone this repo into /root/ +``` +git submodule init +git submodule update +``` + `cd /root/reHDD/` `make release` diff --git a/makefile b/makefile index 0e51b7b..b8e3e3b 100644 --- a/makefile +++ b/makefile @@ -189,8 +189,6 @@ $(BIN_PATH)/$(BIN_NAME): $(OBJECTS) @cp $(TFRANDDIR)/$(TFRANDLIB) $(LIBS) @echo "Linking: $@" @$(START_TIME) - @echo $(LDFLAGS) - @ls lib/ $(CMD_PREFIX)$(CXX) $(OBJECTS) $(LDFLAGS) -o $@ @echo -en "\t Link time: " @$(END_TIME)