From 5df38a4e971f997b8a5dc70775f921fd73ef7ebe Mon Sep 17 00:00:00 2001 From: Rockingcool Date: Wed, 12 Apr 2023 22:49:08 -0500 Subject: [PATCH] Updated Makefile --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5041770..b671406 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,6 @@ CC=gcc CFLAGS= LIB_FILE = libeasysock.so - .PHONY: all all: $(LIB_FILE) @@ -45,7 +44,7 @@ install: $(LIB_FILE) .PHONY: clean clean: - rm *.o + rm easysock.o rm $(LIB_FILE)