xbot/mods/hello/Makefile
2024-02-13 01:22:10 -06:00

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!"