reactos/reactos/drivers/fs/vfat/makefile
Casper Hornstrup 3f69ca4cc4 Major update of the build system:
- Created helper makefile for all targets
- Made most makefiles simpler by using the helper makefile
- Moved build tools into ./tools

Updated installation instructions

svn path=/trunk/; revision=2185
2001-08-21 20:13:17 +00:00

29 lines
394 B
Makefile

# $Id: makefile,v 1.35 2001/08/21 20:13:13 chorns Exp $
PATH_TO_TOP = ../../..
TARGET_TYPE = driver
TARGET_NAME = vfatfs
TARGET_OBJECTS = \
blockdev.o \
cleanup.o \
close.o \
create.o \
dir.o \
direntry.o \
dirwr.o \
fat.o \
fcb.o \
finfo.o \
iface.o \
rw.o \
shutdown.o \
string.o \
volume.o
include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk