Annotation of nono/lib/Makefile, revision 1.1.1.3

1.1       root        1: #
                      2: # nono
                      3: # Copyright (C) 2020 nono project
                      4: # Licensed under nono-license.txt
                      5: #
                      6: 
                      7: #
                      8: # ライブラリというか CLI/wxw 共通で他に属さないようなものとか。
                      9: #
                     10: 
                     11: .include "../Makefile.inc"
                     12: 
                     13: TARGETS=       libnnlib.a
                     14: 
                     15: CXXSRCS_lib=   \
                     16:        config.cpp      \
                     17:        object.cpp      \
                     18:        logger.cpp      \
                     19:        mainapp.cpp     \
                     20:        mappedfile.cpp  \
                     21:        mystring.cpp    \
                     22:        mythread.cpp    \
1.1.1.2   root       23:        perfcounter.cpp \
1.1       root       24:        textscreen.cpp  \
                     25: 
                     26: CXXSRCS_test=  \
                     27:        testatomic.cpp  \
                     28: 
                     29: CXXSRCS=       ${CXXSRCS_lib} ${CXXSRCS_test}
                     30: 
                     31: OBJS_lib=      ${CXXSRCS_lib:.cpp=.o}
                     32: 
                     33: libnnlib.a:    ${OBJS_lib}
                     34:        rm -f $@
                     35:        ${AR} r $@ $>
                     36:        ${RANLIB} $@
                     37: 
                     38: testatomic:    testatomic.o
                     39:        ${CXX} ${LDFLAGS} -pthread -o $@ $> ${LIBS}
                     40: 
                     41: .include "../Makefile.rule"

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.