getch/src/Console/Resources/Makefile

10 lines
119 B
Makefile
Raw Normal View History

2020-12-22 14:19:32 -08:00
CC = gcc
CFLAGS = -shared -Wall -fPIC
all:
@${CC} ${CFLAGS} getwch.c -o libgetwch.so
clean:
@rm -f libgetwch.so