|
|
1.1 root 1: #
2: # nono
1.1.1.3 root 3: # Copyright (C) 2020 nono project
4: # Licensed under nono-license.txt
5: #
6:
1.1 root 7: #
8: # wxWidgets executable
9: #
10:
1.1.1.3 root 11: .include "../Makefile.inc"
12:
1.1 root 13: TARGETS= nono
14:
15: CPPFLAGS+= @WXWIDGETS_CPPFLAGS@
1.1.1.4 ! root 16: # DECLARE_EVENT_TABLE 内に override があるのでそれが回避できない
! 17: CPPFLAGS+= -Wno-inconsistent-missing-override
1.1 root 18:
19: LDFLAGS+= -pthread
20: LIBS+= @WXWIDGETS_LIBS@
21:
22: CXXSRCS= \
23: bitrev.cpp \
24: kaname12.cpp \
25: wxapp.cpp \
26: wxdumpmonitor.cpp \
1.1.1.4 ! root 27: wxhistmonitor.cpp \
! 28: wxlcdwindow.cpp \
1.1 root 29: wxlogmonitor.cpp \
30: wxmainframe.cpp \
31: wxmainview.cpp \
32: wxmonitor.cpp \
1.1.1.3 root 33: wxmpumonitor.cpp \
1.1 root 34: wxsoftkey.cpp \
35: wxsubwindow.cpp \
36: wxtextpanel.cpp \
37: wxtextscreen.cpp \
1.1.1.3 root 38: wxversion.cpp \
1.1 root 39: wxvideomonitor.cpp \
40:
41:
42: OBJS= ${CXXSRCS:.cpp=.o}
43:
44: CLEANDIRFILES= Makefile
45:
46: nono: ${MYLIBS} ${OBJS}
1.1.1.2 root 47: ${CXX} ${LDFLAGS} -o $@ ${OBJS} ${MYLIBS_GROUP} ${LIBS}
1.1.1.3 root 48:
49: install: nono ${BINDIR}
50: ${INSTALL} -m 755 -o 0 -g 0 nono ${BINDIR}
51:
52: # make pot はトップディレクトリで行う必要がある (実行した位置からの相対パスが
53: # ファイルにコメントで残されるため、毎回違うと diff が出てしまう)。
54: # しかし今の所 wx/ にしかカタログ対象がないのでここにもショートカットを用意
55: # しておく。他ディレクトリにも対象が増えたら考え直すこと。
56: pot:
57: (cd ..; ${MAKE} pot)
58:
59: .include "../Makefile.rule"
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.