CC = gcc
CFLAGS = -shared -Wall -Wno-unknown-pragmas -fPIC
all:
@${CC} ${CFLAGS} getch.c -o libgetch.so
clean:
@rm -f libgetch.so