tewi/Module/Makefile
Nishi e43e5b1c69 add installer.sh
git-svn-id: file:///raid/svn-personal/tewi/trunk@62 8739d7e6-ffea-ec47-b151-bdff447c6205
2024-09-18 20:02:26 +00:00

18 lines
253 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 *.dll