mirror of
https://github.com/libretro/vice-libretro.git
synced 2024-11-23 08:19:46 +00:00
Makefile correction
This commit is contained in:
parent
761728ebbf
commit
c54734769f
6
Makefile
6
Makefile
@ -461,21 +461,21 @@ endif
|
||||
|
||||
$(OBJDIR)/%.o: %.c
|
||||
@mkdir -p $(dir $@)
|
||||
@if [[ $(SILENT) -ne 1 ]]; then\
|
||||
@if [ $(SILENT) -ne 1 ]; then\
|
||||
$(if $@, $(shell echo echo CC $<),);\
|
||||
fi
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
$(OBJDIR)/%.o: %.cpp
|
||||
@mkdir -p $(dir $@)
|
||||
@if [[ $(SILENT) -ne 1 ]]; then\
|
||||
@if [ $(SILENT) -ne 1 ]; then\
|
||||
$(if $@, $(shell echo echo CXX $<),);\
|
||||
fi
|
||||
$(CXX) $(CXXFLAGS) -c -o $@ $<
|
||||
|
||||
$(OBJDIR)/%.o: %.cc
|
||||
@mkdir -p $(dir $@)
|
||||
@if [[ $(SILENT) -ne 1 ]]; then\
|
||||
@if [ $(SILENT) -ne 1 ]; then\
|
||||
$(if $@, $(shell echo echo CXX $<),);\
|
||||
fi
|
||||
$(CXX) $(CXXFLAGS) -c -o $@ $<
|
||||
|
Loading…
Reference in New Issue
Block a user