~ubuntu-branches/ubuntu/intrepid/luatex/intrepid

« back to all changes in this revision

Viewing changes to src/libs/luafontforge/fontforge/Unicode/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2008-04-18 15:57:37 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080418155737-kcdpzpew80owd477
Tags: 0.25.3-1
new upstream release: fixes implicit pointer conversion in check_isnode
(Closes: #482311)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
 
1
# $Id$
2
2
top_srcdir = ../../../../src/libs/luafontforge/fontforge
3
3
srcdir = $(top_srcdir)/Unicode
4
4
 
6
6
 
7
7
OBJECTS = alphabet.o char.o memory.o cjk.o ustring.o gwwiconv.o
8
8
 
9
 
CFLAGS = -I$(top_srcdir)/inc -Wall -g -O2 -DLUA_FF_LIB=1 $(XCFLAGS)
 
9
_CFLAGS = -I$(top_srcdir)/inc -Wall -DLUA_FF_LIB=1 $(XCFLAGS)
 
10
CFLAGS = -g -O2
10
11
 
11
12
all: $(OBJECTS)
12
13
 
13
14
%.o: $(srcdir)/%.c 
14
 
        $(CC) $(CFLAGS) -c $< -o $@
 
15
        $(CC) $(_CFLAGS) $(CFLAGS) -c $< -o $@
15
16