Changeset 43 in Main for trunk/Makefile


Ignore:
Timestamp:
Sep 18, 2024, 6:19:03 PM (2 months ago)
Author:
Nishi
Message:

add NO_SSL

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r37 r43  
    1313all: ./Server ./Module ./Manpage
    1414
    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 ../`
    1720
    1821./Module:: ./Common
     
    2629
    2730format:
    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
    2932
    3033clean:
     
    3336        $(MAKE) -C ./Common $(FLAGS) clean
    3437        $(MAKE) -C ./Manpage $(FLAGS) clean
     38        rm -f ./Server/option
Note: See TracChangeset for help on using the changeset viewer.