Now you can see (and even scroll!) devices

This commit is contained in:
2022-06-07 17:33:59 +03:00
parent c60c2be85e
commit b42fa6de5e
2 changed files with 299 additions and 14 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
.PHONY: all clean
CC = qcc # ntox86-gcc
CC = ntox86-gcc
CXX = g++
LFLAGS = -Wall #-Vgcc_ntox86
LIBS = -l ncurses #-l socket
@@ -14,7 +14,7 @@ SRCS = $(SOURCE_PATH)/main.c
all:
mkdir -p $(BIN_PATH)
$(CXX) $(LFLAGS) -o $(TARGET) $(SRCS) $(LIBS)
$(CC) $(LFLAGS) -o $(TARGET) $(SRCS) $(LIBS)
$(BIN_PATH):
mkdir -p $(BIN_PATH)