Changeset 17 in Main for trunk/Makefile
- Timestamp:
- Sep 14, 2024, 2:41:07 AM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r6 r17 7 7 FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX) 8 8 9 .PHONY: all format clean ./Server ./Common 9 .PHONY: all format clean ./Server ./Common ./Module 10 10 11 all: ./Server 11 all: ./Server ./Module 12 12 13 13 ./Server:: ./Common 14 $(MAKE) -C $@ $(FLAGS) 15 16 ./Module:: ./Common 14 17 $(MAKE) -C $@ $(FLAGS) 15 18 … … 18 21 19 22 format: 20 clang-format --verbose -i `find ./Server ./Common -name "*.c" -or -name "*.h"`23 clang-format --verbose -i `find ./Server ./Common ./Module -name "*.c" -or -name "*.h"` 21 24 22 25 clean: 23 26 $(MAKE) -C ./Server $(FLAGS) clean 27 $(MAKE) -C ./Module $(FLAGS) clean 24 28 $(MAKE) -C ./Common $(FLAGS) clean
Note:
See TracChangeset
for help on using the changeset viewer.