Skip to content

Commit

Permalink
Compile quietly by default
Browse files Browse the repository at this point in the history
  • Loading branch information
phcoder committed May 10, 2022
1 parent 8246de5 commit d877579
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
TARGET_NAME := chailove

ifeq ($(VERBOSE),)
Q=@
endif

include Makefile.libretro

ifeq ($(STATIC_LINKING),1)
Expand All @@ -23,10 +27,12 @@ else
endif

%.o: %.cpp
$(CXX) -c -o $@ $< $(CXXFLAGS) -include retro_endianness.h
@echo CXX $<
$(Q)$(CXX) -c -o $@ $< $(CXXFLAGS) -include retro_endianness.h

%.o: %.c
$(CC) -c -o $@ $< $(CFLAGS) -include retro_endianness.h
@echo CXX $<
$(Q)$(CC) -c -o $@ $< $(CFLAGS) -include retro_endianness.h

%.o: %.m
$(CC) -c -o $@ $< $(CFLAGS) -include retro_endianness.h
Expand Down

0 comments on commit d877579

Please sign in to comment.