xbot/mods/test/Makefile
2015-04-07 01:56:50 -05:00

7 lines
116 B
Makefile

CC=gcc
CFLAGS=-fPIC -I../../lib
OBJ=../test.so
main:
$(CC) -shared -o $(OBJ) $(CFLAGS) ./test.c
@echo "All Done!"