summaryrefslogtreecommitdiff
path: root/tmk_core/protocol/lufa/LUFA-git/Bootloaders/HID/HostLoaderApp/Makefile.bsd
diff options
context:
space:
mode:
authorJack Humbert2017-07-07 11:56:01 -0400
committerJack Humbert2017-07-07 11:56:51 -0400
commit39ece819791eed7f57e0a0492c1aa774be5c4b24 (patch)
tree1939a6e4078fce735ece780cd4c803f02a0b4b8a /tmk_core/protocol/lufa/LUFA-git/Bootloaders/HID/HostLoaderApp/Makefile.bsd
parent8655d4f4948b2deef7844503c8d690f23ac1a062 (diff)
delete old lufa
Diffstat (limited to 'tmk_core/protocol/lufa/LUFA-git/Bootloaders/HID/HostLoaderApp/Makefile.bsd')
-rw-r--r--tmk_core/protocol/lufa/LUFA-git/Bootloaders/HID/HostLoaderApp/Makefile.bsd21
1 files changed, 0 insertions, 21 deletions
diff --git a/tmk_core/protocol/lufa/LUFA-git/Bootloaders/HID/HostLoaderApp/Makefile.bsd b/tmk_core/protocol/lufa/LUFA-git/Bootloaders/HID/HostLoaderApp/Makefile.bsd
deleted file mode 100644
index a15a66405..000000000
--- a/tmk_core/protocol/lufa/LUFA-git/Bootloaders/HID/HostLoaderApp/Makefile.bsd
+++ /dev/null
@@ -1,21 +0,0 @@
-OS ?= FreeBSD
-#OS ?= NetBSD
-#OS ?= OpenBSD
-
-CFLAGS ?= -O2 -Wall
-CC ?= gcc
-
-.if $(OS) == "FreeBSD"
-CFLAGS += -DUSE_LIBUSB
-LIBS = -lusb
-.elif $(OS) == "NetBSD" || $(OS) == "OpenBSD"
-CFLAGS += -DUSE_UHID
-LIBS =
-.endif
-
-
-hid_bootloader_cli: hid_bootloader_cli.c
- $(CC) $(CFLAGS) -s -o hid_bootloader_cli hid_bootloader_cli.c $(LIBS)
-
-clean:
- rm -f hid_bootloader_cli