From: mdw Date: Sat, 2 Feb 2002 19:15:46 +0000 (+0000) Subject: All the new audio stuff. X-Git-Url: https://git.distorted.org.uk/~mdw/jog/commitdiff_plain/efb4b3d6a7f9b4e99b0926fd512f709a139319b8 All the new audio stuff. --- diff --git a/Makefile.am b/Makefile.am index 5fe3ce5..722c767 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ## -*-makefile-*- ## -## $Id: Makefile.am,v 1.2 2002/01/30 09:28:06 mdw Exp $ +## $Id: Makefile.am,v 1.3 2002/02/02 19:15:46 mdw Exp $ ## ## Makefile for jog ## @@ -28,6 +28,9 @@ ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.am,v $ +## Revision 1.3 2002/02/02 19:15:46 mdw +## All the new audio stuff. +## ## Revision 1.2 2002/01/30 09:28:06 mdw ## New header file. ## @@ -37,13 +40,21 @@ AUTOMAKE_OPTIONS = foreign +SUBDIRS = sounds + bin_PROGRAMS = jogrx +AUSYS = @AUSYS@ jogrx_SOURCES = \ main.c jog.h \ - err.c rxglue.c txport.c serial.c \ - err.h rxglue.h txport.h serial.h \ - tx-socket.c tx-socket.h \ - tx-serial-unix.c tx-serial-unix.h + err.c rxglue.c serial.c \ + err.h rxglue.h serial.h \ + au.c aunum.c auerr.c ausys-$(AUSYS).c \ + au.h aunum.h auerr.h ausys.h \ + txport.c tx-socket.c tx-socket.h \ + txport.h tx-serial-unix.c tx-serial-unix.h + +EXTRA_jogrx_SOURCES = \ + ausys-fake.c ausys-win32.c ausys-sdl.c ##----- That's all, folks ---------------------------------------------------