xbot/mods/hello/Makefile

7 lines
118 B
Makefile
Executable File

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