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 2018-10-06 19:16:53.955570000 +0200 |
|
+++ src/makefile 2018-10-06 19:18:51.187421000 +0200 |
|
@@ -101,8 +101,8 @@ |
|
|
|
LIBS=$(if $(NE_TERMCAP)$(NE_ANSI),,-lcurses) |
|
|
|
-ne: $(OBJS) $(if $(NE_TERMCAP)$(NE_ANSI),$(TERMCAPOBJS),) |
|
- $(CC) $(OPTS) $(LDFLAGS) $(if $(NE_TEST), -coverage,) $(if $(NE_DEBUG), -fsanitize=address -fsanitize=undefined,) $^ -lm $(LIBS) -o $(PROGRAM) |
|
+ne: $(OBJS) |
|
+ $(CC) $(OPTS) $(LDFLAGS) $^ -lm $(LIBS) -o $(PROGRAM) |
|
|
|
clean: |
|
rm -f ne *.o *.gcda *.gcda.info *.gcno core
|
|
|