diff options
| -rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -27,7 +27,7 @@ LDEPS=bullet_loan.c straight_line_loan.c mortgage_loan.c loans.c read_functions. LHEAD=contract.h loans.h LOBJ=${LDEPS:.c=.o} -.PHONY: all clean release $(TARGET) $(LIB) +.PHONY: all clean release lib $(TARGET) $(LIB) all: $(LIB) $(TARGET) @@ -43,6 +43,8 @@ $(TARGET): $(OBJ) $(LIB) $(LIB): $(LOBJ) $(AR) $(LIB) $(LOBJ) +lib: $(LIB) + release: @make -DRELEASE |
