Ignore:
Timestamp:
2008-05-19T15:54:46+12:00 (16 years ago)
Author:
mdewsnip
Message:

More tidy ups to all the Makefiles, this time to tidy up the targets and add comments about the default target.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/src/colservr/Makefile.in

    r15551 r15579  
    117117
    118118
     119# Default target: make gsdlcolservr.a
     120all: $(LIBRARY)
     121
    119122gsdlcolservr.a: $(OBJECTS)
    120     rm -f gsdlcolservr.a
    121     $(AR) cru gsdlcolservr.a $(OBJECTS)
    122     $(RANLIB) gsdlcolservr.a
    123 
    124 all: $(LIBRARY)
     123    rm -f $(LIBRARY)
     124    $(AR) cru $(LIBRARY) $(OBJECTS)
     125    $(RANLIB) $(LIBRARY)
    125126
    126127install: $(LIBRARY)
    127128
    128129clean:
    129     rm -f $(OBJECTS)
     130    rm -f $(OBJECTS) $(LIBRARY)
    130131
    131132distclean:
    132     rm -f $(OBJECTS) Makefile
     133    rm -f $(OBJECTS) $(LIBRARY) Makefile
    133134
    134135depend:
Note: See TracChangeset for help on using the changeset viewer.