Changeset 43 in Main for trunk/Makefile
- Timestamp:
- Sep 18, 2024, 6:19:03 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r37 r43 13 13 all: ./Server ./Module ./Manpage 14 14 15 ./Server:: ./Common 16 $(MAKE) -C $@ $(FLAGS) 15 ./Server/option: ./Server/option.c 16 cc -o $@ ./Server/option.c 17 18 ./Server:: ./Common ./Server/option 19 $(MAKE) -C $@ $(FLAGS) EXTOBJS=`./Server/option objs ../` EXTLIBS=`./Server/option libs ../` 17 20 18 21 ./Module:: ./Common … … 26 29 27 30 format: 28 clang-format --verbose -i `find ./Server ./Common ./Module "(" -name "*.c" -or -name "*.h" ")" -and -not -name "strptime.*"` 31 clang-format --verbose -i `find ./Server ./Common ./Module "(" -name "*.c" -or -name "*.h" ")" -and -not -name "strptime.*"` config.h 29 32 30 33 clean: … … 33 36 $(MAKE) -C ./Common $(FLAGS) clean 34 37 $(MAKE) -C ./Manpage $(FLAGS) clean 38 rm -f ./Server/option
Note:
See TracChangeset
for help on using the changeset viewer.