Subversion Repositories Tewi

Rev

Rev 126 | Rev 215 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

# $Id: Makefile 212 2024-10-02 17:44:55Z nishi $

OBJ=o
STATIC=a
include $(PWD)/Platform/$(PLATFORM).mk

.PHONY: all clean
.SUFFIXES: .c .$(OBJ) $(LIBSUF)

all: mod_cgi$(LIBSUF) mod_proxy$(LIBSUF)

.$(OBJ)$(LIBSUF):
        $(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.$(STATIC) $(LIBS)

.c.$(OBJ):
        $(CC) $(CFLAGS) -c -o $@ $<

clean:
        rm -f *.o *.so *.a *.dll *.dll