Changeset 225

Show
Ignore:
Timestamp:
10/31/07 05:33:18 (1 year ago)
Author:
WeirdCat
Message:

make a 'lib' directory when there is none, respectively remove it when run with 'cleanall'

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/win32/makefile

    r220 r225  
    2626    $(DC) $^ -c $(DFLAGS) 
    2727 
    28 lib/%.lib : 
     28lib/%.lib : lib 
    2929    $(MAKE) -C $* 
    3030    move "$*\$*.lib" "$@" 
     31 
     32lib : 
     33    mkdir lib 
    3134 
    3235clean : 
     
    3538cleanall : clean 
    3639    del lib\*.lib 
     40    rmdir lib 
    3741    for %%f in ($(LIBS)) do ($(MAKE) -C %%f cleanall) 
    3842