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