]> andersk Git - udis86.git/blame - udcli/Makefile.win32
update CHANGES
[udis86.git] / udcli / Makefile.win32
CommitLineData
bbe45369 1#
2# Makefile for win32 compilers
3# (I need some help here!)
4
5CC = cl
6CFLAGS = -O2
7RM = del
8
9
10.SUFFIXES: .c .obj
11
12.c.obj:
13 $(CC) -c $(CFLAGS) -o $@ $<
14
15OBJS = udcli.obj ../libudis86/udis86.lib
16
17udcli: $(OBJS)
18 $(CC) $(OBJS) -o udcli.exe
19
20clean:
21 $(RM) *.obj udcli.exe
This page took 0.725728 seconds and 5 git commands to generate.