/xmlbench/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/xmlbench/trunk

« back to all changes in this revision

Viewing changes to xmlgen/Makefile

  • Committer: Suren A. Chilingaryan
  • Date: 2009-02-16 09:27:17 UTC
  • Revision ID: csa@dside.dyndns.org-20090216092717-wipyvaaw2srxhgns
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include ../Makefile.in
 
2
 
 
3
TARGETS = opcgen xmlgen
 
4
ifeq ($(GENERATOR_XMARK),yes)
 
5
TARGETS += xmark xmarkdtd
 
6
endif
 
7
 
 
8
 
 
9
all: $(TARGETS)
 
10
 
 
11
clean:
 
12
        rm -rf $(TARGETS)
 
13
 
 
14
opcgen: opcgen.c opcgen.h random.h
 
15
        $(gcc) -o opcgen -lm $(FLAGS) $<
 
16
 
 
17
xmlgen: xmlgen.c xmlgen.h random.h
 
18
        $(gcc) -o xmlgen -lm $(FLAGS) $<
 
19
 
 
20
ifeq ($(GENERATOR_XMARK),yes)
 
21
xmark: xmark.c xmark.h unix.h 
 
22
        $(gcc) -o xmark $(FLAGS) $<
 
23
ifeq ($(DTD_VALIDATION),yes)
 
24
xmarkdtd: xmarkdtd.c xmark.h unix.h
 
25
        $(gcc) -o xmarkdtd $(FLAGS) $<
 
26
endif
 
27
endif