diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fee1c82 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ + +SRC_DIR = src +BUILD_DIR = build +INCLUDE_DIR = include + +SRCS = $(wildcard $SRC_DIR/*.c) +OBJS = $(addprefix $(BUILD_DIR)/artifacts, $(addsuffix .o, $(basename $(SRCS)))) + +build: $(OBJS) + gcc -shared -o $(BUILD_DIR)/libopensmarts.so $(OBJS) |