projects
/
reactos.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
finger client for reactos
[reactos.git]
/
rosapps
/
net
/
finger
/
makefile
1
2
PATH_TO_TOP=../../../reactos
3
4
TARGET_TYPE = program
5
6
TARGET_APPTYPE = console
7
8
TARGET_NAME = finger
9
10
TARGET_SDKLIBS = ws2_32.a
11
12
TARGET_OBJECTS = $(TARGET_NAME).o \
13
err.o \
14
getopt.o \
15
net.o
16
17
TARGET_GCCLIBS = iberty
18
19
include $(PATH_TO_TOP)/rules.mak
20
21
include $(TOOLS_PATH)/helper.mk
22
23
# EOF