You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
530 B
14 lines
530 B
Index: src/makefile |
|
--- src/makefile.orig 2021-05-17 08:18:39.372825000 +0200 |
|
+++ src/makefile 2021-05-17 08:20:18.113524000 +0200 |
|
@@ -111,8 +111,8 @@ |
|
|
|
LIBS=$(if $(NE_TERMCAP)$(NE_ANSI),,-lcurses) |
|
|
|
-ne: $(OBJS) $(if $(NE_TERMCAP)$(NE_ANSI),$(TERMCAPOBJS),) |
|
- $(CC) $(LDFLAGS) $(if $(NE_TEST), -coverage,) $(if $(NE_DEBUG), -fsanitize=address -fsanitize=undefined,) $^ $(LIBS) $(OPTS) -lm -o $(PROGRAM) |
|
+ne: $(OBJS) |
|
+ $(CC) $(LDFLAGS) $^ $(LIBS) $(OPTS) -lm -o $(PROGRAM) |
|
|
|
clean: |
|
rm -f ne *.o *.gcda *.gcda.info *.gcno core
|
|
|