diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2006-12-11 15:18:52 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2006-12-11 15:18:52 +0000 |
commit | 587c99351d480cef96332dff31a39f662ebdccdb (patch) | |
tree | 406f075faf5c8980f09c8e396ab129d4aac8b8b2 /ares | |
parent | 88c8d72a214864952b6d1c2347b6c3f5b7d69e84 (diff) |
ahost.exe needs getopt.obj.
Diffstat (limited to 'ares')
-rw-r--r-- | ares/Makefile.vc6 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ares/Makefile.vc6 b/ares/Makefile.vc6 index 022e7e281..857e40144 100644 --- a/ares/Makefile.vc6 +++ b/ares/Makefile.vc6 @@ -121,8 +121,8 @@ $(DEF_FILE): $(OBJECTS) Makefile.VC6 @echo ares_gettimeofday >> $@ @echo ares_parse_aaaa_reply >> $@ -ahost.exe: $(OBJ_DIR) $(OBJ_DIR)\ahost.obj cares_imp.lib - link $(LDFLAGS) -out:$@ $(OBJ_DIR)\ahost.obj cares_imp.lib $(EX_LIBS) +ahost.exe: $(OBJ_DIR) $(OBJ_DIR)\ahost.obj $(OBJ_DIR)\getopt.obj cares_imp.lib + link $(LDFLAGS) -out:$@ $(OBJ_DIR)\ahost.obj $(OBJ_DIR)\getopt.obj cares_imp.lib $(EX_LIBS) adig.exe: $(OBJ_DIR) $(OBJ_DIR)\adig.obj $(OBJ_DIR)\getopt.obj cares_imp.lib link $(LDFLAGS) -out:$@ $(OBJ_DIR)\adig.obj $(OBJ_DIR)\getopt.obj cares_imp.lib $(EX_LIBS) |