X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gdbserver%2FMakefile;h=c81ea52b84fdcfaa3cb8ebaefca17b06c03b0d71;hb=2edd0530a6d3dfc428bedc3d9628093775673389;hp=a8d1b90aa3b35dda5ba88637e1b65ddb51a9c798;hpb=ebaf5ac5be01306be8d806bfaa33834d9615552c;p=fw%2Fstlink diff --git a/gdbserver/Makefile b/gdbserver/Makefile index a8d1b90..c81ea52 100644 --- a/gdbserver/Makefile +++ b/gdbserver/Makefile @@ -1,24 +1,8 @@ -# make ... for both libusb and libsg -# -# make CONFIG_USE_LIBSG=0 ... -# for just libusb -# - PRG := st-util OBJS = gdb-remote.o gdb-server.o CFLAGS+=-g -Wall -Werror -std=gnu99 -I../src -CFLAGS+=-DCONFIG_USE_LIBUSB=1 -LDFLAGS=-lusb-1.0 -L.. -lstlink - -ifeq ($(CONFIG_USE_LIBSG),) -CONFIG_USE_LIBSG=1 -endif - -ifneq ($(CONFIG_USE_LIBSG),0) -CFLAGS+=-DCONFIG_USE_LIBSG=1 -LDFLAGS+=-lsgutils2 -endif +LDFLAGS=-L.. -lstlink -lusb-1.0 all: $(PRG)