chore: setup debug project for binding C and Rust
This commit is contained in:
32
makefile
Normal file
32
makefile
Normal file
@ -0,0 +1,32 @@
|
||||
# Detect the operating system
|
||||
ifeq ($(OS),Windows_NT)
|
||||
MKDIR = if not exist $(LIB_DIR) mkdir $(LIB_DIR)
|
||||
RM = del
|
||||
else
|
||||
MKDIR = mkdir -p $(LIB_DIR)
|
||||
RM = rm -f
|
||||
endif
|
||||
|
||||
CC = gcc
|
||||
AR = ar
|
||||
CFLAGS = -Wall -fPIC
|
||||
SRC_DIR = src
|
||||
LIB_DIR = lib
|
||||
SRC_FILES = $(wildcard $(SRC_DIR)/*.c)
|
||||
OBJ_FILES = $(SRC_FILES:$(SRC_DIR)/%.c=$(LIB_DIR)/%.o)
|
||||
STATIC_LIB = $(LIB_DIR)/libp4pillondebuglib.a
|
||||
|
||||
all: $(STATIC_LIB)
|
||||
|
||||
$(STATIC_LIB): $(OBJ_FILES)
|
||||
$(MKDIR)
|
||||
$(AR) rcs $@ $^
|
||||
|
||||
$(LIB_DIR)/%.o: $(SRC_DIR)/%.c
|
||||
$(MKDIR)
|
||||
$(CC) $(CFLAGS) -c $< -o $@
|
||||
|
||||
clean:
|
||||
$(RM) $(OBJ_FILES) $(STATIC_LIB)
|
||||
|
||||
.PHONY: all clean
|
Reference in New Issue
Block a user