projects
/
reactos.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Reworked code for handling of asynchonous i/o requests.
[reactos.git]
/
reactos
/
drivers
/
fs
/
vfat
/
makefile
1
# $Id: makefile,v 1.36 2001/11/02 22:47:36 hbirr Exp $
2
3
PATH_TO_TOP = ../../..
4
5
TARGET_TYPE = driver
6
7
TARGET_NAME = vfatfs
8
9
TARGET_OBJECTS = \
10
blockdev.o \
11
cleanup.o \
12
close.o \
13
create.o \
14
dir.o \
15
direntry.o \
16
dirwr.o \
17
fat.o \
18
fcb.o \
19
finfo.o \
20
iface.o \
21
rw.o \
22
shutdown.o \
23
string.o \
24
volume.o \
25
misc.o
26
27
DEP_OBJECTS = $(TARGET_OBJECTS)
28
29
include $(PATH_TO_TOP)/rules.mak
30
31
include $(TOOLS_PATH)/helper.mk
32
33
include $(TOOLS_PATH)/depend.mk
34