reactos/reactos/lib/fmifs/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

31 lines
417 B
Makefile

# $Id: makefile,v 1.14 2001/08/21 20:13:06 chorns Exp $
PATH_TO_TOP = ../..
TARGET_TYPE = dynlink
TARGET_NAME = fmifs
TARGET_BASE = 0x76df0000
TARGET_SDKLIBS = ntdll.a kernel32.a
TARGET_OBJECTS = \
chkdsk.o \
compress.o \
diskcopy.o \
dllmain.o \
extend.o \
format.o \
init.o \
label.o \
media.o
include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk
TARGET_FILES = misc/*.o
# EOF