rockbox/utils/hwstub/tools/Makefile
Amaury Pouly 07bc348c91 hwstub: add tool to dump memory regions (such as ROM, RAM, or peripherals)
Although this case be done with hwstub_shell, this is common enough to deserve
its own tool.

Change-Id: I9253e40850f37257464548a3acefb14ea083841d
2017-01-24 15:34:19 +01:00

53 lines
1.4 KiB
Makefile

CC=gcc
CXX=g++
LD=g++
HWSTUB_INCLUDE_DIR=../include
HWSTUB_LIB_DIR=../lib
REGTOOLS_INCLUDE_DIR=../../regtools/include
REGTOOLS_LIB_DIR=../../regtools/lib
INCLUDES=-I$(HWSTUB_INCLUDE_DIR) -I$(REGTOOLS_INCLUDE_DIR) `pkg-config --cflags lua5.2` `pkg-config --cflags libusb-1.0`
CFLAGS=-Wall -O2 -std=c99 -g $(INCLUDES) -D_XOPEN_SOURCE=600
CXXFLAGS=-Wall -O2 -std=c++11 -g $(INCLUDES)
LDFLAGS=-lhwstub `pkg-config --libs libusb-1.0` `pkg-config --libs lua5.2` -lreadline -L$(HWSTUB_LIB_DIR) -L$(REGTOOLS_LIB_DIR) -lsocdesc `xml2-config --libs` -pthread
EXEC=hwstub_shell hwstub_load hwstub_server hwstub_test hwstub_dump
SRC=$(wildcard *.c)
SRCXX=$(wildcard *.cpp)
OBJ=$(SRC:.c=.o) $(SRCXX:.cpp=.o)
LIBS=$(HWSTUB_LIB_DIR)/libhwstub.a $(REGTOOLS_LIB_DIR)/libsocdesc.a
all: $(EXEC)
# force target to always rebuild libraries
FORCE:
$(HWSTUB_LIB_DIR)/libhwstub.a: FORCE
make -C $(HWSTUB_LIB_DIR)
$(REGTOOLS_LIB_DIR)/libsocdesc.a: FORCE
make -C $(REGTOOLS_LIB_DIR)
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
%.o: %.cpp
$(CXX) $(CXXFLAGS) -c -o $@ $<
hwstub_shell: hwstub_shell.o prompt.o $(LIBS)
$(LD) -o $@ $^ $(LDFLAGS)
hwstub_load: hwstub_load.o $(LIBS)
$(LD) -o $@ $^ $(LDFLAGS)
hwstub_dump: hwstub_dump.o $(LIBS)
$(LD) -o $@ $^ $(LDFLAGS)
hwstub_server: hwstub_server.o $(LIBS)
$(LD) -o $@ $^ $(LDFLAGS)
hwstub_test: hwstub_test.o $(LIBS)
$(LD) -o $@ $^ $(LDFLAGS)
clean:
rm -rf $(OBJ) $(LIB) $(EXEC)