Subversion Repositories Tewi

Rev

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

# $Id: Makefile 62 2024-09-18 20:02:26Z nishi $

include $(PWD)/Platform/$(PLATFORM).mk

.PHONY: all clean
.SUFFIXES: .c .o $(LIB)

all: mod_cgi$(LIB)

.o$(LIB):
        $(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.a $(LIBS)

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

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