summaryrefslogtreecommitdiff
path: root/Build/source/libs/luafontforge/Makefile
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2008-04-28 08:45:24 +0000
committerTaco Hoekwater <taco@elvenkind.com>2008-04-28 08:45:24 +0000
commit5b93d006ed6fa1c5990c7079d92d3b7d195068b0 (patch)
treed2ddf0f582719f4e67e618f99a47fa32db728c27 /Build/source/libs/luafontforge/Makefile
parent6b4bb4d5747a2819cb015fcfe7e6a7521580adbb (diff)
Aix compilation fixes a from Vladimir Volovich
git-svn-id: svn://tug.org/texlive/trunk@7695 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/luafontforge/Makefile')
-rw-r--r--Build/source/libs/luafontforge/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/libs/luafontforge/Makefile b/Build/source/libs/luafontforge/Makefile
index 84564f19ad2..a160ab19650 100644
--- a/Build/source/libs/luafontforge/Makefile
+++ b/Build/source/libs/luafontforge/Makefile
@@ -4,8 +4,8 @@ srcdir=../../../libs/luafontforge
FF_LIB=ffdummies.o luafflib.o
-_CFLAGS=-Wall -DFONTFORGE_CONFIG_NO_WINDOWING_UI=1 -DLUA_FF_LIB=1 $(XCFLAGS)
-CFLAGS = -g -O2
+_CFLAGS=-DFONTFORGE_CONFIG_NO_WINDOWING_UI=1 -DLUA_FF_LIB=1 $(XCFLAGS)
+#CFLAGS = -g -O2
.PHONY: newfile
@@ -17,7 +17,7 @@ fontforge: $(FF_LIB) newfile
ranlib libff.a
%.o: $(srcdir)/src/%.c
- gcc $(_CFLAGS) $(CFLAGS) -I$(srcdir)/../lua51 -I$(srcdir)/fontforge/inc -I$(srcdir)/fontforge/fontforge -c $< -o $@
+ $(CC) $(_CFLAGS) $(CFLAGS) -I$(srcdir)/../lua51 -I$(srcdir)/fontforge/inc -I$(srcdir)/fontforge/fontforge -c $< -o $@
clean:
rm -f libff.a $(FF_LIB)