source:
Main/trunk/Module/Makefile@
127
Last change on this file since 127 was 126, checked in by , on Sep 23, 2024 at 1:40:40 AM | |
---|---|
|
|
File size: 269 bytes |
Line | |
---|---|
1 | # $Id: Makefile 126 2024-09-22 16:40:40Z nishi $ |
2 | |
3 | include $(PWD)/Platform/$(PLATFORM).mk |
4 | |
5 | .PHONY: all clean |
6 | .SUFFIXES: .c .o $(LIB) |
7 | |
8 | all: mod_cgi$(LIB) mod_proxy$(LIB) |
9 | |
10 | .o$(LIB): |
11 | $(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.a $(LIBS) |
12 | |
13 | .c.o: |
14 | $(CC) $(CFLAGS) -c -o $@ $< |
15 | |
16 | clean: |
17 | rm -f *.o *.so *.a *.dll |
Note:
See TracBrowser
for help on using the repository browser.