Newer
Older
Scratch / aibot / modules / Makefile
@Christopher W. Olsen Christopher W. Olsen on 25 Oct 2019 161 bytes Scratch
CC=gcc
CFLAGS=-I./include
 
all: example
 
example: example.c
	$(CC) -fPIC -c example.c
	ld -Bshareable -o example.so example.o

clean:
	rm -fr *.so
	rm -fr *.o