projects
/
reactos.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Created new subtree for groups of related test programs.
[reactos.git]
/
reactos
/
apps
/
testsets
/
msvcrt
/
fileio
/
makefile
1
#
2
# $Id: makefile,v 1.0
3
4
PATH_TO_TOP = ../../../..
5
6
TARGET_NORC = yes
7
8
TARGET_TYPE = program
9
10
TARGET_APPTYPE = console
11
12
TARGET_NAME = fileio
13
14
TARGET_CFLAGS = -DDBG
15
16
TARGET_SDKLIBS = ntdll.a kernel32.a
17
18
TARGET_OBJECTS = $(TARGET_NAME).o wfileio.o main.o
19
20
include $(PATH_TO_TOP)/rules.mak
21
22
include $(TOOLS_PATH)/helper.mk
23
24
# EOF