xbot/mods/lua/Makefile

8 lines
161 B
Makefile
Raw Normal View History

2024-02-25 09:09:24 -08:00
CC=gcc
2024-02-26 23:16:58 -08:00
CFLAGS=-g -fPIC -I../../lib -llua
2024-02-25 09:09:24 -08:00
OBJ=../lua.so
main:
2024-02-26 23:16:58 -08:00
$(CC) -shared -o $(OBJ) $(CFLAGS) ./wrappers.c ./events.c ./handlers.c ./lua.c
2024-02-25 09:09:24 -08:00
@echo "All Done!"