diff options
author | Takamichi Horikawa <takamichiho@gmail.com> | 2016-11-26 20:57:57 +0900 |
---|---|---|
committer | Takamichi Horikawa <takamichiho@gmail.com> | 2016-11-26 20:57:57 +0900 |
commit | 6fd10cdacb5cbe47a4fc339c20a733d4a9a384a1 (patch) | |
tree | c7f479a70c350dca0b73d76078e46db41d9c4133 /curses/Makefile.am |
initial
Diffstat (limited to 'curses/Makefile.am')
-rw-r--r-- | curses/Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/curses/Makefile.am b/curses/Makefile.am new file mode 100644 index 0000000..340f926 --- /dev/null +++ b/curses/Makefile.am @@ -0,0 +1,18 @@ +bin_PROGRAMS=fmpc + +LIBOPNA_SOURCES=../libopna/opnaadpcm.c \ + ../libopna/opnadrum.c \ + ../libopna/opnafm.c \ + ../libopna/opnassg.c \ + ../libopna/opnatimer.c \ + ../libopna/opna.c + +FMDRIVER_SOURCES=../fmdriver/fmdriver_fmp.c \ + ../fmdriver/ppz8.c +fmpc_SOURCES=main.c \ + $(LIBOPNA_SOURCES) \ + $(FMDRIVER_SOURCES) + +fmpc_CFLAGS=-Wall -Wextra -pedantic \ + -I.. $(SDL_CFLAGS) $(NCURSES_CFLAGS) +fmpc_LDADD=$(SDL_LIBS) $(NCURSES_LIBS) |