gdb-server/makefile

11 lines
308 B
Makefile

build:
@mkdir -p build
@gcc main.c cmdbuf.c hex.c request.c response.c server.c pvbemu/core/vb.c \
-I include -I pvbemu/core \
-Werror -std=c90 -Wall -Wextra -Wpedantic \
-Wno-unused-parameter -Wno-unused-function \
-D _POSIX_C_SOURCE=199309L \
-o ./build/rdb
clean:
@rm -rf build
.PHONY: build clean