summaryrefslogtreecommitdiff
path: root/innobase/os/makefilewin
blob: 08dba0e5e47308976dc9ddef666e3668c7b60624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include ..\include\makefile.i

os.lib: os0sync.obj os0thread.obj os0shm.obj os0proc.obj os0file.obj
	lib -out:..\libs\os.lib os0sync.obj os0thread.obj os0shm.obj os0proc.obj os0file.obj

os0sync.obj: os0sync.c
	$(CCOM) $(CFLW) -c os0sync.c

os0thread.obj: os0thread.c
	$(CCOM) $(CFLW) -c os0thread.c

os0shm.obj: os0shm.c
	$(CCOM) $(CFLW) -c os0shm.c

os0proc.obj: os0proc.c
	$(CCOM) $(CFLW) -c os0proc.c

os0file.obj: os0file.c
	$(CCOM) $(CFLW) -c os0file.c