1
0
Fork 0
mirror of https://github.com/Detanup01/gbe_fork.git synced 2025-07-07 09:05:18 +02:00

add target for building 32bit lib

This commit is contained in:
Alex 2019-04-13 23:19:48 +00:00
parent 8ffb2dc03c
commit c863d511af

View file

@ -23,9 +23,12 @@ $(OBJ) : $(HEADERS)
release: CXX_FLAGS += -DNDEBUG -DEMU_RELEASE_BUILD -Ofast
release: LD_FLAGS += -lpthread
release32: CXX_FLAGS += -m32
release32: LD_FLAGS += -m32
debug: CXX_FLAGS += -g3 -fsanitize=address
debug: LD_FLAGS += -lasan
release: library
release32: release
debug: library
all: release