source: Main/trunk/Makefile@ 40

Last change on this file since 40 was 37, checked in by Nishi, on Sep 16, 2024 at 10:57:39 PM

add manpage

  • Property svn:keywords set to Id
File size: 698 bytes
Line 
1# $Id: Makefile 37 2024-09-16 13:57:39Z nishi $
2
3PWD = `pwd`
4PLATFORM = generic
5PREFIX = /usr/local
6
7include Platform/$(PLATFORM).mk
8
9FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX)
10
11.PHONY: all format clean ./Server ./Common ./Module ./Manpage
12
13all: ./Server ./Module ./Manpage
14
15./Server:: ./Common
16 $(MAKE) -C $@ $(FLAGS)
17
18./Module:: ./Common
19 $(MAKE) -C $@ $(FLAGS)
20
21./Common::
22 $(MAKE) -C $@ $(FLAGS)
23
24./Manpage::
25 $(MAKE) -C $@ $(FLAGS)
26
27format:
28 clang-format --verbose -i `find ./Server ./Common ./Module "(" -name "*.c" -or -name "*.h" ")" -and -not -name "strptime.*"`
29
30clean:
31 $(MAKE) -C ./Server $(FLAGS) clean
32 $(MAKE) -C ./Module $(FLAGS) clean
33 $(MAKE) -C ./Common $(FLAGS) clean
34 $(MAKE) -C ./Manpage $(FLAGS) clean
Note: See TracBrowser for help on using the repository browser.