Changeset 40 in Main for trunk/Module/Makefile


Ignore:
Timestamp:
Sep 17, 2024, 9:31:08 PM (2 months ago)
Author:
Nishi
Message:

use dll for windows build

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Module/Makefile

    r39 r40  
    44
    55.PHONY: all clean
    6 .SUFFIXES: .c .o .so
     6.SUFFIXES: .c .o $(LIB)
    77
    8 all: mod_example.so mod_cgi.so
     8all: mod_cgi$(LIB)
    99
    10 .o.so:
     10.o$(LIB):
    1111        $(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.a $(LIBS)
    1212
    1313.c.o:
    14         $(CC) $(CFLAGS) -fPIC -c -o $@ $<
     14        $(CC) $(CFLAGS) -c -o $@ $<
    1515
    1616clean:
Note: See TracChangeset for help on using the changeset viewer.