diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2021-05-27 14:27:36 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2021-05-27 14:27:36 -0400 |
commit | d21a7a73da13a62140a4715e6002c82278ef8ee1 (patch) | |
tree | d1d777a6e80b3f89871e19bcffce3a3bde513be6 /Makefile | |
parent | 63f1090ccc54ca33a6556bd3753e0c2d1f466ec1 (diff) |
I realized that it wasn't required to use libtcc, oof.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 : |