Changeset 4220 for trunk/lib-src/makefile.w32-in
- Timestamp:
- 2008年04月04日 22時04分40秒 (8 months ago)
- Files:
-
- trunk/lib-src/makefile.w32-in (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib-src/makefile.w32-in
r4213 r4220 1 1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API. 2 2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 3 # 2005, 2006, 2007 Free Software Foundation, Inc.3 # 2005, 2006, 2007, 2008 Free Software Foundation, Inc. 4 4 # 5 5 # This file is part of GNU Emacs. … … 7 7 # GNU Emacs is free software; you can redistribute it and/or modify 8 8 # it under the terms of the GNU General Public License as published by 9 # the Free Software Foundation; either version 2, or (at your option)9 # the Free Software Foundation; either version 3, or (at your option) 10 10 # any later version. 11 11 # … … 25 25 .PHONY: $(ALL) 26 26 27 VERSION = 22. 127 VERSION = 22.2 28 28 29 29 LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \ … … 83 83 $(BLD)/emacsclient.exe: $(ECLIENTOBJS) 84 84 # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib 85 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $( LIBS)85 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $(COMCTL32) $(LIBS) 86 86 87 87 $(BLD)/emacsclientw.exe: $(ECLIENTOBJS) $(TRES) 88 88 # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib 89 $(LINK) $(LINK_OUT)$@ $(TRES) -mwindows $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $( LIBS)89 $(LINK) $(LINK_OUT)$@ $(TRES) -mwindows $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $(COMCTL32) $(LIBS) 90 90 91 91 # emacsclient.$(O) depends on makefile.w32-in because makefile.w32-in … … 325 325 # Maintenance 326 326 # 327 # We used to delete *~ here, but that might inadvertently remove 328 # precious files if it happens to match their short 8+3 aliases. 327 329 clean: 328 - $(DEL) *~DOC* $(COMPILER_TEMP_FILES)330 - $(DEL) DOC* $(COMPILER_TEMP_FILES) 329 331 - $(DEL) ctags.c 330 332 - $(DEL) getopt.h
