diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2020-04-29 17:53:32 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2020-04-29 17:53:32 -0400 |
commit | 9797ea8be2220759eab9ec546f43c6b9a04c7cc5 (patch) | |
tree | eaeb88ea1a63674481d5e324a18861af451154c4 /Makefile | |
parent | 3191b60b80b540c2a800748b72a51332261faceb (diff) |
Totally revamped the program, and made it faster.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,11 +10,11 @@ endif CFLAGS = $(PCC_CFLAGS) $(CFLAGS_EXTRA) OBJS = clld.c OBJ_NAME = clld -all : $(OBJS) +all : clean $(OBJS) $(CC) $(OBJS) $(CFLAGS) -o $(OBJ_NAME) test-mvmt : $(CC) test-mvmt.c $(CFLAGS) -o test-mvmt -benchmark: +benchmark: clean $(CC) clld-bench.c $(CFLAGS) -o clld-bench clean : rm -f $(OBJ_NAME) test-mvmt clld-bench |