~ubuntu-branches/ubuntu/wily/opencollada/wily

« back to all changes in this revision

Viewing changes to Externals/LibXML/Makefile.win

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2015-05-14 17:23:27 UTC
  • Revision ID: package-import@ubuntu.com-20150514172327-f862u8envms01fra
Tags: upstream-0.1.0~20140703.ddf8f47+dfsg1
ImportĀ upstreamĀ versionĀ 0.1.0~20140703.ddf8f47+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This is a makefile for win32 systems (VC 5.0).
 
2
# Christopher Blizzard
 
3
# http://odin.appliedtheory.com/
 
4
 
 
5
CC = cl
 
6
CFLAGS = /c /GB /Gi /nologo /I. /DWIN32 /MT /Zi
 
7
 
 
8
LD = link
 
9
LDFLAGS = /DEBUG /NODEFAULTLIB:libc
 
10
 
 
11
AR = lib
 
12
 
 
13
all: xml.lib
 
14
 
 
15
test: tester.exe
 
16
 
 
17
SHARED_OBJS = entities.obj parser.obj tree.obj SAX.obj
 
18
 
 
19
xml.lib: $(SHARED_OBJS)
 
20
        $(AR) /out:xml.lib $(SHARED_OBJS)
 
21
 
 
22
tester.obj: $(SHARED_OBJS)
 
23
        $(CC) $(CFLAGS) tester.c /out:tester.obj
 
24
 
 
25
tester.exe: tester.obj xml.lib
 
26
        $(LD) $(LDFLAGS) /out:tester.exe tester.obj xml.lib
 
27
 
 
28
clean:
 
29
        -del /f $(SHARED_OBJS) tester.obj
 
30
        -del /f tester.exe
 
31
        -del /f xml.lib
 
32
        -del /f *.pdb
 
33
        -del /f *.idb
 
34
        -del /f *.ilk