WiFi Driver USB, TP-Link Archer T1U

I ditched Windows and found out that motherboard hardware works fine under Linux, but my USB wireless adapter does not.
I'm using openSUS 42.1 at the moment (also tried Fedora 24)
I have a TP-Link Archer T1U USB wireless adapter I'd like to use.
TP-Link's Linux driver installation says to do the following:

To compile the driver:
1. Access the directory of driver.
2. Before compile, make sure the the path in makefile.c is suitable for your compile environment of your Linux system.


ifeq ($(WIFI_MODE),)
RT28xx_MODE = STA
else
RT28xx_MODE = $(WIFI_MODE)
endif
ifeq ($(TARGET),)
TARGET = LINUX
endif


PLATFORM: Target platform

PLATFORM = PC


ifeq ($(PLATFORM),PC)

Linux 2.6

LINUX_SRC = /lib/modules/$(shell uname
-r)/build

Linux 2.4 Change to your local setting

LINUX_SRC = /usr/src/linux

-2.4
LINUX_SRC_MODULE = /lib/modules/$(shell uname
-r)/kernel/drive
rs/net/wireless/
CROSS_COMPILE =
endif


Is the above code supposed to be typed into a Terminal Window?