diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 44 |
1 files changed, 37 insertions, 7 deletions
diff --git a/Makefile b/Makefile index eb86aee..613771b 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,40 @@ -test: dist - ./out/Release/uv_link_t-test +include config.mk -example: dist - ./out/Release/uv_link_t-example +SRC = $(shell find src/ -type f -name '*.c') +OBJ = $(SRC:%=$(BUILD_DIR)/%.o) +H = include/uv_link_t.h -dist: - gypkg build uv_link_t.gyp +.PHONY: all static shared clean install-static install-shared install -.PHONY: test example dist +all: static shared + +static: $(SNAME) + +shared: $(DNAME) + +$(OBJ): config.mk + +$(SNAME): $(OBJ) + ar rcs $@ $? + +$(DNAME): LDFLAGS += -shared +$(DNAME): $(OBJ) + $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ + +$(BUILD_DIR)/%.c.o: %.c + mkdir -p '$(@D)' + $(CC) -c -o $@ $(INCLUDES) $(CFLAGS) $< + +clean: + rm -rf $(SNAME) $(DNAME) $(BUILD_DIR) + +install-header: + install -m 644 $(H) $(PREFIX)/include + +install-static: $(SNAME) + install -m 755 $(SNAME) $(PREFIX)/lib64 + +install-shared: $(DNAME) + install -m 755 $(DNAME) $(PREFIX)/lib64 + +install: install-header install-static install-shared |