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