From a1fd2eb23744c40116eef010bf9e889f592b980f Mon Sep 17 00:00:00 2001 From: joshua stein Date: Wed, 1 Jan 2020 13:20:03 -0600 Subject: [PATCH] Build: Userland: no need for duplicate .cpp->.o rule --- Userland/Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Userland/Makefile b/Userland/Makefile index 2188d72adb..cede7cf547 100644 --- a/Userland/Makefile +++ b/Userland/Makefile @@ -13,10 +13,6 @@ all: $(APPS) list: @echo $(APPS) -%.o: %.cpp - @echo "C++ $@" - $(QUIET) $(CXX) $(CXXFLAGS) -o $@ -c $< - $(APPS): %: %.o $(STATIC_LIB_DEPS) @echo "LINK $@" $(QUIET) $(CXX) -o $@ $< $(LDFLAGS)