Initial commit
[fillmore] / src / marina / Makefile
1 LIBRARY = libmarina.a
2 all: $(LIBRARY)
3
4 # defaults that may be overridden by configure.mk
5 BUILD_RELEASE=1
6
7 -include ../../configure.mk
8
9 -include sources.mk
10
11 HEADER_FILES = marina.h
12 LIBRARY_NAME = --library marina
13
14 ifndef BUILD_DIR
15 BUILD_DIR=marina
16 endif
17
18 -include ../../marina.mk
19
20 clean:
21         rm -f $(EXPANDED_C_FILES)
22         rm -f $(EXPANDED_SAVE_TEMPS_FILES)
23         rm -f $(EXPANDED_OBJ_FILES)
24         rm -f $(VALA_STAMP)
25         rm -rf $(LIBRARY)-$(VERSION)
26         rm -f $(LIBRARY)
27         rm -f $(BUILD_DIR)/marina.vapi
28         rm -f marina.h
29