From 0751b55f611b889f63dfc2bc2705e7537703cb43 Mon Sep 17 00:00:00 2001 From: gonzo Date: Fri, 19 May 2023 22:17:58 +0200 Subject: added loan struct to abstract over loan types --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d3a30d0..14f15ab 100644 --- a/Makefile +++ b/Makefile @@ -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} -- cgit v1.2.3