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