From 48171abc6108e863814bf1ecc459526599262416 Mon Sep 17 00:00:00 2001 From: Fabian Franz BSc Date: Fri, 16 Aug 2024 23:03:21 +0200 Subject: [PATCH] revert accidentally committed line --- ambed/makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ambed/makefile b/ambed/makefile index fcfd570..ce8912d 100644 --- a/ambed/makefile +++ b/ambed/makefile @@ -8,7 +8,8 @@ EXECUTABLE=ambed all: $(SOURCES) $(EXECUTABLE) $(EXECUTABLE): $(OBJECTS) - $(CC) $(LDFLAGS) $(OBJECTS) -lftd2xx -I/usr/src/libftd2xx-x86_64-1.4.27 -Wl,-rpath,/usr/local/lib -lsystemd -o $@ + $(CC) $(LDFLAGS) $(OBJECTS) -lftd2xx -Wl,-rpath,/usr/local/lib -lsystemd -o $@ + .cpp.o: $(CC) $(CFLAGS) $< -o $@