Rev | Line | |
---|
[17] | 1 | # $Id: Makefile 254 2024-10-04 04:08:33Z nishi $
|
---|
| 2 |
|
---|
[212] | 3 | OBJ=o
|
---|
| 4 | STATIC=a
|
---|
[219] | 5 | END=_dll
|
---|
[17] | 6 | include $(PWD)/Platform/$(PLATFORM).mk
|
---|
| 7 |
|
---|
| 8 | .PHONY: all clean
|
---|
[212] | 9 | .SUFFIXES: .c .$(OBJ) $(LIBSUF)
|
---|
[17] | 10 |
|
---|
[212] | 11 | all: mod_cgi$(LIBSUF) mod_proxy$(LIBSUF)
|
---|
[17] | 12 |
|
---|
[212] | 13 | .$(OBJ)$(LIBSUF):
|
---|
| 14 | $(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.$(STATIC) $(LIBS)
|
---|
[17] | 15 |
|
---|
[212] | 16 | .c.$(OBJ):
|
---|
[215] | 17 | $(CC) $(CFLAGS) -I ../Server -c -o $@ $<
|
---|
[17] | 18 |
|
---|
| 19 | clean:
|
---|
[254] | 20 | rm -f *.o *.so *.a *.dll *.tds
|
---|
Note:
See
TracBrowser
for help on using the repository browser.