Allow to write to sram from the command line
[fw/stlink] / gdbserver / Makefile
index a10a0d82793ff6cbae3b6104a3473a123d79a7fb..8cca5726d25abc341c23f786804b8fc0b36a3547 100644 (file)
@@ -1,28 +1,12 @@
-# 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=-L.. -lstlink -lusb-1.0
 
-ifeq ($(CONFIG_USE_LIBSG),)
-CONFIG_USE_LIBSG=1
-endif
-
-ifneq ($(CONFIG_USE_LIBSG),0)
-CFLAGS+=-DCONFIG_USE_LIBSG=1
-LDFLAGS+=-lsgutils2
-endif
-
 all: $(PRG)
 
-$(PRG): $(OBJS)
+$(PRG): $(OBJS) ../libstlink.a
        $(CC) -o $@  $^ $(LDFLAGS)
 
 clean: