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

« back to all changes in this revision

Viewing changes to src/libs/zziplib/zzip/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:
11
11
 
12
12
_CFLAGS = -DHAVE_CONFIG_H -I.. -I../../../../src/libs/zziplib -I../../../../src/libs/zlib -Wall
13
13
 
14
 
XCFLAGS = $(_CFLAGS)
15
 
 
16
14
all: $(OBJECTS)
17
15
        $(AR) libzzip.a $(OBJECTS)
18
16
        $(RANLIB) libzzip.a
19
17
 
20
18
%.o: $(srcdir)/%.c 
21
 
        $(CC) $(CFLAGS) $(XCFLAGS) -c $< -o $@
 
19
        $(CC) $(_CFLAGS) $(CFLAGS) $(XCFLAGS) -c $< -o $@
22
20