mirror of
https://github.com/despawnerer/freearc
synced 2026-08-23 02:23:04 -04:00
14 lines
483 B
Makefile
Executable file
14 lines
483 B
Makefile
Executable file
include ../../common.mak
|
|
|
|
ALL: $(TEMPDIR)/C_Encryption.o
|
|
|
|
CODE_FLAGS = -fno-exceptions -fno-rtti -Wall \
|
|
-Wno-unknown-pragmas -Wno-sign-compare -Wno-conversion
|
|
OPT_FLAGS = -O3 \
|
|
-fomit-frame-pointer -fstrict-aliasing \
|
|
-fforce-addr -funroll-loops
|
|
DEBUG_FLAGS = -g0
|
|
CFLAGS = $(CODE_FLAGS) $(OPT_FLAGS) $(DEBUG_FLAGS) $(DEFINES)
|
|
|
|
$(TEMPDIR)/C_Encryption.o: C_Encryption.cpp C_Encryption.h makefile
|
|
$(GCC) -c $(CFLAGS) -Iheaders -o $*.o $<
|