summaryrefslogtreecommitdiffstats
path: root/TOOLS/mpfc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS/mpfc/Makefile')
-rw-r--r--TOOLS/mpfc/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/TOOLS/mpfc/Makefile b/TOOLS/mpfc/Makefile
index f82f9db47f..51cd597603 100644
--- a/TOOLS/mpfc/Makefile
+++ b/TOOLS/mpfc/Makefile
@@ -6,10 +6,10 @@ LIBS=-lgd -lttf -lpng
all: $(TARGET)
mpfc-ce: mpfc-ce.c
- gcc -Wall -O2 -o $@ $< $(LIBS)
+ $(CC) -Wall -O2 -o $@ $< $(LIBS)
mpfc-kr: mpfc-kr.c
- gcc -Wall -O2 -o $@ $< $(LIBS)
+ $(CC) -Wall -O2 -o $@ $< $(LIBS)
clean:
-rm -f $(TARGET)