Subversion Repositories Tewi

Rev

Rev 62 | Rev 212 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
17 nishi 1
# $Id: Makefile 126 2024-09-22 16:40:40Z nishi $
2
 
3
include $(PWD)/Platform/$(PLATFORM).mk
4
 
5
.PHONY: all clean
40 nishi 6
.SUFFIXES: .c .o $(LIB)
17 nishi 7
 
126 nishi 8
all: mod_cgi$(LIB) mod_proxy$(LIB)
17 nishi 9
 
40 nishi 10
.o$(LIB):
18 nishi 11
	$(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.a $(LIBS)
17 nishi 12
 
13
.c.o:
40 nishi 14
	$(CC) $(CFLAGS) -c -o $@ $<
17 nishi 15
 
16
clean:
62 nishi 17
	rm -f *.o *.so *.a *.dll