Changeset 212 in Main for trunk/Module


Ignore:
Timestamp:
Oct 3, 2024, 2:44:55 AM (6 weeks ago)
Author:
Nishi
Message:

compiles on vc6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Module/Makefile

    r126 r212  
    11# $Id$
    22
     3OBJ=o
     4STATIC=a
    35include $(PWD)/Platform/$(PLATFORM).mk
    46
    57.PHONY: all clean
    6 .SUFFIXES: .c .o $(LIB)
     8.SUFFIXES: .c .$(OBJ) $(LIBSUF)
    79
    8 all: mod_cgi$(LIB) mod_proxy$(LIB)
     10all: mod_cgi$(LIBSUF) mod_proxy$(LIBSUF)
    911
    10 .o$(LIB):
    11         $(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.a $(LIBS)
     12.$(OBJ)$(LIBSUF):
     13        $(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.$(STATIC) $(LIBS)
    1214
    13 .c.o:
     15.c.$(OBJ):
    1416        $(CC) $(CFLAGS) -c -o $@ $<
    1517
    1618clean:
    17         rm -f *.o *.so *.a *.dll
     19        rm -f *.o *.so *.a *.dll *.dll
Note: See TracChangeset for help on using the changeset viewer.