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/protocol/Makefile.in

    r15572 r15579  
    6262
    6363
     64# Default target: make gsdlprotocol.a
     65all: $(LIBRARY)
     66
    6467gsdlprotocol.a: $(OBJECTS)
    65     rm -f gsdlprotocol.a
    66     $(AR) cru gsdlprotocol.a $(OBJECTS)
    67     $(RANLIB) gsdlprotocol.a
    68 
    69 all: $(LIBRARY)
     68    rm -f $(LIBRARY)
     69    $(AR) cru $(LIBRARY) $(OBJECTS)
     70    $(RANLIB) $(LIBRARY)
    7071
    7172install: $(LIBRARY)
    7273
    7374clean:
    74     rm -f $(OBJECTS)
     75    rm -f $(OBJECTS) $(LIBRARY)
    7576
    7677distclean:
    77     rm -f $(OBJECTS) Makefile
     78    rm -f $(OBJECTS) $(LIBRARY) Makefile
    7879
    7980depend:
Note: See TracChangeset for help on using the changeset viewer.