diff options
author | Adam Light <aclight@gmail.com> | 2010-11-12 20:19:56 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-11-12 23:29:29 +0100 |
commit | 64520e43d4cb190f682e89594e6bd8a83762484e (patch) | |
tree | 77a7214d19e28e422d89e52757e3316ef68e029e /src | |
parent | c79f816c323f5d17f9e45f78fd08df72bd6c5f7a (diff) | |
download | curl-64520e43d4cb190f682e89594e6bd8a83762484e.tar.gz |
Makefile.vc6: fixed the xattr.c compile
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.vc6 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile.vc6 b/src/Makefile.vc6 index bd60fc2b3..da7a2a351 100644 --- a/src/Makefile.vc6 +++ b/src/Makefile.vc6 @@ -260,6 +260,8 @@ rawstrr.obj: ../lib/rawstr.c $(CCR) $(CFLAGS) /Fo"$@" ../lib/rawstr.c
strtoofftr.obj: ../lib/strtoofft.c
$(CCR) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c
+xattrr.obj: xattr.c
+ $(CCR) $(CFLAGS) /Fo"$@" xattr.c
mainr.obj: main.c
$(CCR) $(CFLAGS) /Fo"$@" main.c
curlr.res : curl.rc
@@ -286,6 +288,8 @@ rawstrd.obj: ../lib/rawstr.c $(CCD) $(CFLAGS) /Fo"$@" ../lib/rawstr.c
strtoofftd.obj: ../lib/strtoofft.c
$(CCD) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c
+xattrd.obj: xattr.c
+ $(CCD) $(CFLAGS) /Fo"$@" xattr.c
maind.obj: main.c
$(CCD) $(CFLAGS) /Fo"$@" main.c
curld.res : curl.rc
|