From 15db07b9412aa45cef4bfb2b9777eb88432d3efd Mon Sep 17 00:00:00 2001 From: funbars <50187994+funbars@users.noreply.github.com> Date: Fri, 31 May 2019 11:27:34 -0500 Subject: [PATCH] makefile cleanup --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index d889f4e..3c60332 100644 --- a/Makefile +++ b/Makefile @@ -119,7 +119,6 @@ compile = \ libnes_objects := $(patsubst %,obj/%.o,$(objects)) $(TARGET): $(libnes_objects) - @echo "** BUILDING $(TARGET) FOR PLATFORM $(platform) **" ifeq ($(platform),unix) $(cpp) -o $@ -shared $(libnes_objects) -Wl,--no-undefined -Wl,--version-script=link.T else ifeq ($(platform),win) @@ -127,7 +126,6 @@ else ifeq ($(platform),win) else $(cpp) -o $@ -dynamiclib $(libnes_objects) $(LDFLAGS) endif - @echo "** BUILD SUCCESSFUL! GG NO RE **" clean: rm -f $(libnes_objects) $(TARGET)