summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-05-27 14:27:36 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-05-27 14:27:36 -0400
commitd21a7a73da13a62140a4715e6002c82278ef8ee1 (patch)
treed1d777a6e80b3f89871e19bcffce3a3bde513be6
parent63f1090ccc54ca33a6556bd3753e0c2d1f466ec1 (diff)
Remove librt from the list of libraries.HEADmaster
I realized that it wasn't required to use libtcc, oof.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bce1e6d..9fc9b02 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ OBJ_NAME = libtcc-test
all : clean $(OBJ_NAME)
$(OBJ_NAME) : $(OBJS)
- $(CC) $(OBJS) $(CFLAGS) -ltcc -lpthread -lrt -ldl -o $(OBJ_NAME)
+ $(CC) $(OBJS) $(CFLAGS) -ltcc -lpthread -ldl -o $(OBJ_NAME)
%.o : %.c
$(CC) -c $< -o $@ $(CFLAGS)
clean :