|
|
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: kaname12.cpp \
1.1.1.7 ! root 24: privatechar.cpp \
1.1 root 25: wxapp.cpp \
1.1.1.7 ! root 26: wxbitmapbuf.cpp \
1.1 root 27: wxdumpmonitor.cpp \
1.1.1.4 root 28: wxhistmonitor.cpp \
29: wxlcdwindow.cpp \
1.1 root 30: wxlogmonitor.cpp \
31: wxmainframe.cpp \
32: wxmainview.cpp \
33: wxmonitor.cpp \
1.1.1.3 root 34: wxmpumonitor.cpp \
1.1 root 35: wxsoftkey.cpp \
1.1.1.6 root 36: wxstatuspanel.cpp \
1.1 root 37: wxsubwindow.cpp \
38: wxtextpanel.cpp \
39: wxtextscreen.cpp \
1.1.1.3 root 40: wxversion.cpp \
1.1 root 41: wxvideomonitor.cpp \
42:
43:
44: OBJS= ${CXXSRCS:.cpp=.o}
45:
46: CLEANDIRFILES= Makefile
47:
48: nono: ${MYLIBS} ${OBJS}
1.1.1.2 root 49: ${CXX} ${LDFLAGS} -o $@ ${OBJS} ${MYLIBS_GROUP} ${LIBS}
1.1.1.3 root 50:
1.1.1.5 root 51: install: nono
52: ${INSTALL} -d ${DESTDIR}${BINDIR}
53: ${INSTALL} -m 755 -o 0 -g 0 nono ${DESTDIR}${BINDIR}
1.1.1.3 root 54:
55: # make pot はトップディレクトリで行う必要がある (実行した位置からの相対パスが
56: # ファイルにコメントで残されるため、毎回違うと diff が出てしまう)。
57: # しかし今の所 wx/ にしかカタログ対象がないのでここにもショートカットを用意
58: # しておく。他ディレクトリにも対象が増えたら考え直すこと。
59: pot:
60: (cd ..; ${MAKE} pot)
61:
62: .include "../Makefile.rule"
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.