source: Main/trunk/Module/Makefile@ 257

Last change on this file since 257 was 255, checked in by Nishi, on Oct 4, 2024 at 1:08:58 PM

get listdir working [release 2.03E]

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