diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,14 +1,14 @@ UNAME := $$( uname -s ) .if ${UNAME} == "Linux" -CC=clang --std=gnu99 +CC=clang --std=gnu11 .else -CC=clang --std=c99 +CC=clang --std=c11 .endif AR=ar ruvcs -CFLAGS=-Wall -Wextra -Werror -Weverything -Wpadded -pedantic -LIBS=-lncurses -lm +CFLAGS=-Wall -Wextra -Werror -Weverything -pedantic +LIBS=-lform -lncurses -lm BLDFLAGS=-g RELFLAGS=-O2 @@ -18,7 +18,7 @@ HEAD= OBJ=${DEPS:.c=.o} LIB=las.a -LDEPS=bullet_loan.c straight_line_loan.c mortgage_loan.c +LDEPS=bullet_loan.c straight_line_loan.c mortgage_loan.c loans.c LHEAD=contract.h loans.h LOBJ=${LDEPS:.c=.o} |
