]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | # create library |
2 | ||
3 | library:: $(LIB_BASE_DIR)/lib$(LIB_TARGET).a | |
4 | ||
5 | $(LIB_BASE_DIR)/lib$(LIB_TARGET).a: $(LIB_OBJ) | |
6 | @$(RM) -f $@ | |
7 | $(AR) rv $@ $(LIB_OBJ) | |
8 | ||
9 | # defining dependencies | |
10 | ||
11 | depend_library:: | |
12 | ||
13 | # cleaning all files | |
14 | ||
15 | clean_library:: | |
16 | @$(RM) -f $(LIB_BASE_DIR)/lib$(LIB_TARGET).a | |
17 |