xbot/mods/test/Makefile

7 lines
116 B
Makefile
Raw Normal View History

2015-04-07 06:56:50 +00:00
CC=gcc
CFLAGS=-fPIC -I../../lib
OBJ=../test.so
main:
$(CC) -shared -o $(OBJ) $(CFLAGS) ./test.c
@echo "All Done!"