Ignore:
Timestamp:
2008-05-19T16:04:47+12:00 (16 years ago)
Author:
mdewsnip
Message:

Hopefully the last of the makefile tidy ups.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/src/z3950/win32.mak

    r15571 r15580  
    134134all: $(LIBRARY) $(EXECUTABLE)
    135135
    136 
    137136gsdlz3950.lib: $(LIBRARY_OBJECTS)
    138     if EXIST gsdlz3950.lib del gsdlz3950.lib
    139     $(AR) -nologo /out:gsdlz3950.lib $(LIBRARY_OBJECTS) $(PACKAGES_DIR)/yaz/yaz-2.1.4/win/obj/tabcomplete.obj
     137    if EXIST $(LIBRARY) del $(LIBRARY)
     138    $(AR) -nologo /out:$(LIBRARY) $(LIBRARY_OBJECTS) $(PACKAGES_DIR)/yaz/yaz-2.1.4/win/obj/tabcomplete.obj
    140139
    141140z3950server.exe: $(EXECUTABLE_OBJECTS)
    142141    $(LINK) $(EXECUTABLE_OBJECTS) $(LIBS)
    143142
    144 
    145143install: $(EXECUTABLE)
    146     copy z3950server.exe "$(GSDL_DIR)\bin\windows"
     144    copy $(EXECUTABLE) "$(GSDL_DIR)\bin\windows"
    147145
    148146clean:
    149147    del *.obj
    150     del gsdlz3950.lib
    151     del z3950server.exe
     148    del $(LIBRARY)
     149    del $(EXECUTABLE)
Note: See TracChangeset for help on using the changeset viewer.