]> andersk Git - udis86.git/blame - libudis86/Makefile.win32
Use the public http URI to docbook.xsl.
[udis86.git] / libudis86 / Makefile.win32
CommitLineData
bbe45369 1#
2# Makefile for win32 compilers
3#
4# (I need some help here.)
5#
6
7CC = cl
8CFLAGS = /O2
9AR = lib
10RM = del
11PERL = perl
12
13.SUFFIXES: .c .obj
14.c.obj:
15 $(CC) -c $(CFLAGS) -o $@ $<
16
17OBJS = itab.obj \
18 input.obj \
19 decode.obj \
20 input.obj \
21 decode.obj \
22 syn.obj \
23 syn-intel.obj \
24 syn-att.obj \
25 udis86.obj
26
27HDRS = types.h \
28 extern.h \
29 itab.h \
30 decode.h \
31 syn.h \
32 input.h
33
34libudis86.a: $(OBJS)
35 $(AR) /out:udis86.lib $(OBJS)
36
37itab.c itab.h: x86optable.xml opgen.py
38 python ./opgen.py
39
40itab.c input.c decode.c syn-intel.c syn-att.c syn.c udis86.c: $(HDRS)
41
42clean:
43 $(RM) *.obj *.lib
This page took 1.324903 seconds and 5 git commands to generate.