X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=be9439186744d91b1dfb6a2f66571b4e6cf5410e;hb=ebcd59b7ac1170dda42b7352ffdc1289f60ad174;hp=864565e5fbdaf0e81aa93a39d2b07523210a7680;hpb=c6a249e3b48161bcf6d8ab3eb0538d96edd67797;p=pcsx_rearmed.git diff --git a/Makefile b/Makefile index 864565e5..be943918 100644 --- a/Makefile +++ b/Makefile @@ -411,7 +411,7 @@ $(TARGET): $(OBJS) ifeq ($(STATIC_LINKING), 1) $(AR) rcs $@ $(OBJS) else - $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS) + $(CC_LINK) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS) endif clean: $(PLAT_CLEAN) clean_plugins @@ -421,10 +421,10 @@ ifneq ($(PLUGINS),) plugins_: $(PLUGINS) $(PLUGINS): - make -C $(dir $@) + $(MAKE) -C $(dir $@) clean_plugins: - make -C plugins/gpulib/ clean + $(MAKE) -C plugins/gpulib/ clean for dir in $(PLUGINS) ; do \ $(MAKE) -C $$(dirname $$dir) clean; done else