annotate udis86-1.4/udcli/Makefile.win32 @ 1:4a9dcbd9e54f

-files of 0.13 beta -fixes so that it now compiles with the current dmd version
author marton@basel.hu
date Tue, 05 Apr 2011 20:44:01 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1 # Makefile
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
2 # udis86 - Cmd line interface.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
3 #
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
4
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
5 CC = cl
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
6 CFLAGS = -O2
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
7 RM = del
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
8
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
9
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
10 .SUFFIXES: .c .obj
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
11 .c.obj:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
12 $(CC) -c $(CFLAGS) -o $@ $<
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
13
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
14 OBJS = udcli.obj ../libudis86/udis86.lib
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
15
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
16 udcli: $(OBJS)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
17 $(CC) $(OBJS) -o udcli.exe
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
18
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
19 clean:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
20 $(RM) *.obj udcli.exe