FLAGS=-m32 -Os -ffast-math -fno-finite-math-only -fPIC -shared -ffunction-sections -fdata-sections -Wl,--gc-sections -Wl,--no-undefined -flto
LIBS=-lm

gamei386.so: *.c *.h navlib/*.o makefile
	$(CC) $(FLAGS) *.c navlib/*.o $(LIBS) -o $@
	
clean:
	rm -f gamei386.so
