Merge branch 'tinker' into dev

This commit is contained in:
Dimitris Panokostas 2018-01-23 20:24:37 +01:00 committed by GitHub
commit 9f3bcbacf9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 3 deletions

View file

@ -15,6 +15,7 @@ CPPFLAGS+= -MD -MP
#GCC_PROFILE=1
#GEN_PROFILE=1
#USE_PROFILE=1
#WITH_LOGGING=1
#
# SDL1 targets
@ -401,9 +402,10 @@ OBJS += src/jit/compemu_support.o
src/jit/compemu_support.o: src/jit/compemu_support.cpp
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -fomit-frame-pointer -o src/jit/compemu_support.o -c src/jit/compemu_support.cpp
$(PROG): $(OBJS)
$(CXX) -o $(PROG) $(OBJS) $(LDFLAGS)
cp $(PROG) $(PROG)-debug
ifndef DEBUG
$(STRIP) $(PROG)
endif