You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
510 B
Makefile
35 lines
510 B
Makefile
3 years ago
|
TARGET=sbm
|
||
|
BUILD_DIR=build
|
||
|
MK_DIR=mkdir -p
|
||
|
|
||
|
CPP_SRCS= \
|
||
|
src/main.cpp
|
||
|
|
||
|
CC=g++
|
||
|
CFLAGS=-Og -Wall -fdata-sections -ffunction-sections -g3 -DDEBUG
|
||
|
|
||
|
INCLUDES=\
|
||
|
cfg\
|
||
|
inc
|
||
|
all: bin/$(TARGET)
|
||
|
|
||
|
OBJS=$(addprefix $(BUILD_DIR)/,$(notdir $(CPP_SRCS:.cpp=.o)))
|
||
|
vpath %.cpp $(sort $(dir $(CPP_SRCS)))
|
||
|
|
||
|
$(BUILD_DIR)/%.o: %.cpp Makefile | $(BUILD_DIR)
|
||
|
$(CC) -c $(CFLAGS) $< -o $@
|
||
|
|
||
|
bin/$(TARGET): $(OBJS) Makefile
|
||
|
$(CC) $(OBJS) -o $@
|
||
|
size $@
|
||
|
|
||
|
$(BUILD_DIR):
|
||
|
mkdir $@
|
||
|
|
||
|
clean:
|
||
|
@rm -fR $(BUILD_DIR)
|
||
|
@rm -f bin/$(TARGET)
|
||
|
|
||
|
|
||
|
|