source: Main/trunk/Module/Makefile@ 74

Last change on this file since 74 was 62, checked in by Nishi, on Sep 19, 2024 at 5:02:26 AM

add installer.sh

  • Property svn:keywords set to Id
File size: 253 bytes
RevLine 
[17]1# $Id: Makefile 62 2024-09-18 20:02:26Z nishi $
2
3include $(PWD)/Platform/$(PLATFORM).mk
4
5.PHONY: all clean
[40]6.SUFFIXES: .c .o $(LIB)
[17]7
[40]8all: 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
16clean:
[62]17 rm -f *.o *.so *.a *.dll
Note: See TracBrowser for help on using the repository browser.