tewi/Module/Makefile
Nishi bf87d827d3 use dll for windows build
git-svn-id: file:///raid/svn-personal/tewi/trunk@40 8739d7e6-ffea-ec47-b151-bdff447c6205
2024-09-17 12:31:08 +00:00

18 lines
247 B
Makefile

# $Id$
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