Changes to Make/makerules.* and Make/makedefs.* to accomodate MacOSX's need

to treat plugins and shared libraries seperately.
This commit is contained in:
Robert Osfield
2002-01-16 12:08:29 +00:00
parent 92785c864e
commit 76c4729328
10 changed files with 32 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
all : $(MAKEDEPEND) $(TARGET) $(LIB)
all : $(MAKEDEPEND) $(TARGET) $(LOADABLE) $(LIB)
$(TARGET) : $(OBJS)
$(C++) $(LDFLAGS) $(OBJS) $(LIBS) -o $@
@@ -7,6 +7,9 @@ $(TARGET) : $(OBJS)
$(LIB) : $(OBJS)
$(C++) $(LDFLAGS) -shared $(OBJS) $(LIBS) -o $@
$(LOADABLE) : $(OBJS)
$(C++) $(LDFLAGS) -shared $(OBJS) $(LIBS) -o $@
clean :
rm -f $(OBJS) core $(TARGET) $(MAKEDEPEND)
touch $(MAKEDEPEND)