source: Main/trunk/Module/Makefile@ 17

Last change on this file since 17 was 17, checked in by Nishi, on Sep 14, 2024 at 2:41:07 AM

module system kinda works

  • Property svn:keywords set to Id
File size: 229 bytes
RevLine 
[17]1# $Id: Makefile 17 2024-09-13 17:41:07Z nishi $
2
3include $(PWD)/Platform/$(PLATFORM).mk
4
5.PHONY: all clean
6.SUFFIXES: .c .o .so
7
8all: mod_example.so
9
10.o.so:
11 $(CC) $(LDFLAGS) -shared -o $@ $< $(LIBS)
12
13.c.o:
14 $(CC) $(CFLAGS) -fPIC -c -o $@ $<
15
16clean:
17 rm -f *.o *.so *.a
Note: See TracBrowser for help on using the repository browser.