summaryrefslogtreecommitdiff
path: root/usbredirserver/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'usbredirserver/Makefile')
-rw-r--r--usbredirserver/Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/usbredirserver/Makefile b/usbredirserver/Makefile
deleted file mode 100644
index 889b839..0000000
--- a/usbredirserver/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-override CPPFLAGS += $(shell pkg-config --cflags libusb-1.0)
-LIBS = $(shell pkg-config --libs libusb-1.0)
-
-USBREDIRSERVER_OBJS = usbredirserver.o
-TARGETS = usbredirserver
-
-all: $(TARGETS)
-
--include *.d
-
-usbredirserver: $(USBREDIRSERVER_OBJS)
-# rpath-link so that usbredirparser (needed by usbredirhost) can be found
-# when building without having a previous version installed
- $(CC) $(LDFLAGS) -Wl,-rpath-link,../usbredirparser -o $@ $^ $(LIBS) -lusbredirhost
-
-install: all
- mkdir -p $(DESTDIR)$(SBINDIR)
- install -m 755 usbredirserver $(DESTDIR)$(SBINDIR)
-
-include ../Make.rules