source: Main/trunk/Module/Makefile@ 325

Last change on this file since 325 was 315, checked in by Nishi, on Oct 14, 2024 at 7:01:02 PM

wip

  • Property svn:keywords set to Id
File size: 382 bytes
Line 
1# $Id: Makefile 315 2024-10-14 10:01:02Z nishi $
2
3OBJ=o
4STATIC=a
5END=_dll
6SHARED=-shared
7include $(PWD)/Platform/$(PLATFORM).mk
8
9.PHONY: all clean
10.SUFFIXES: .c .$(OBJ) $(LIBSUF)
11
12all: mod_cgi$(LIBSUF) mod_proxy$(LIBSUF)
13
14.$(OBJ)$(LIBSUF):
15 $(CC) $(LDFLAGS) $(SHARED) -o $@ $< $(LIBEXTRA) ../Common/common.$(STATIC) $(LIBS)
16
17.c.$(OBJ):
18 $(CC) $(CFLAGS) -I ../Server -c -o $@ $<
19
20clean:
21 rm -f *.o *.so *.a *.dll *.tds *.obj
Note: See TracBrowser for help on using the repository browser.