diff options
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) |