Subversion Repositories Tewi

Rev

Rev 17 | Rev 32 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 nishi 1
# $Id: Makefile 25 2024-09-14 15:10:29Z nishi $
2
 
3
PWD = `pwd`
4
PLATFORM = generic
4 nishi 5
PREFIX = /usr/local
2 nishi 6
 
25 nishi 7
include Platform/$(PLATFORM).mk
8
 
2 nishi 9
FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX)
10
 
17 nishi 11
.PHONY: all format clean ./Server ./Common ./Module
2 nishi 12
 
17 nishi 13
all: ./Server ./Module
2 nishi 14
 
15
./Server:: ./Common
16
	$(MAKE) -C $@ $(FLAGS)
17
 
17 nishi 18
./Module:: ./Common
19
	$(MAKE) -C $@ $(FLAGS)
20
 
2 nishi 21
./Common::
22
	$(MAKE) -C $@ $(FLAGS)
23
 
24
format:
17 nishi 25
	clang-format --verbose -i `find ./Server ./Common ./Module -name "*.c" -or -name "*.h"`
2 nishi 26
 
27
clean:
28
	$(MAKE) -C ./Server $(FLAGS) clean
17 nishi 29
	$(MAKE) -C ./Module $(FLAGS) clean
2 nishi 30
	$(MAKE) -C ./Common $(FLAGS) clean