OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
tools
/
usb
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📄
Makefile
273 bytes
11/01/2022 04:52:05 PM
rw-r--r--
📁
ffs-aio-example
-
11/17/2022 06:42:18 AM
rwxr-xr-x
📄
hcd-tests.sh
6.08 KB
01/28/2018 09:20:33 PM
rw-r--r--
📁
usbip
-
11/17/2022 06:42:23 AM
rwxr-xr-x
Editing: Makefile
Close
# SPDX-License-Identifier: GPL-2.0 # Makefile for USB tools PTHREAD_LIBS = -lpthread WARNINGS = -Wall -Wextra CFLAGS = $(WARNINGS) -g -I../include LDFLAGS = $(PTHREAD_LIBS) all: testusb ffs-test %: %.c $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) clean: $(RM) testusb ffs-test