Skip to content

Commit

Permalink
Fix a couple of Makefile merge goofs
Browse files Browse the repository at this point in the history
  • Loading branch information
camgunz committed Mar 29, 2022
1 parent c039b41 commit f11eae3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -4,7 +4,7 @@ CLANG ?= clang
EXTRA_CFLAGS ?= -Werror -Wall -Wextra -funsigned-char -fwrapv -Wconversion \
-Wno-sign-conversion -Wmissing-format-attribute \
-Wpointer-arith -Wformat-nonliteral -Winit-self \
-Wwrite-strings -Wshadow \ -Wenum-compare -Wempty-body \
-Wwrite-strings -Wshadow -Wenum-compare -Wempty-body \
-Wparentheses -Wcast-align -Wstrict-aliasing --pedantic-errors
CMPCFLAGS ?= -std=c89 -Wno-c99-extensions
TESTCFLAGS ?= -std=c99 -Wno-error=deprecated-declarations \
Expand Down Expand Up @@ -58,7 +58,7 @@ cmpprof: cmp.o
cmpunittest: cmp.o
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(TESTCFLAGS) $(LDFLAGS) \
-fprofile-arcs -ftest-coverage -g -I. \
-o cmptest cmp.o test/test.c test/tests.c test/buf.c test/utils.c \
-o cmpunittest cmp.o test/test.c test/tests.c test/buf.c test/utils.c \
-lcmocka

cmpnofloattest: cmp.o
Expand Down

0 comments on commit f11eae3

Please sign in to comment.