Skip to content

Commit 0dbafb8

Browse files
Initial commit
0 parents  commit 0dbafb8

File tree

7 files changed

+924
-0
lines changed

7 files changed

+924
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.exe
2+
*.o

Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# I'm only using cross compilation here. This might cause issues.
2+
3+
CC = i686-w64-mingw32-gcc
4+
CFLAGS = -Wall
5+
6+
TARGET = remote.exe
7+
OBJECTS = remote.o
8+
9+
%.o: %.c
10+
$(CC) $(CFLAGS) -c $< -o $@
11+
12+
$(TARGET): $(OBJECTS)
13+
$(CC) $(OBJECTS) -Ilibusb -L. -llibusb0 -o $@
14+
15+
clean:
16+
rm -f *.o $(TARGET)

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# NTATV Remote Driver
2+
LibUSB-based

0 commit comments

Comments
 (0)