fix path of argparse.h (from old shared project)
This commit is contained in:
parent
36ca6059c1
commit
e72b63b754
6 changed files with 10 additions and 10 deletions
10
Makefile
10
Makefile
|
@ -1,11 +1,11 @@
|
|||
all: oplplayer bankdump bankconv banktest mididump
|
||||
oplplayer: oplplayer.c alsasnd.h ../argparse.h audio.h bank.h dmx.h midi.h strings.h wavfile.h opl3.h
|
||||
oplplayer: oplplayer.c alsasnd.h argparse.h audio.h bank.h dmx.h midi.h strings.h wavfile.h opl3.h
|
||||
gcc -g -o oplplayer oplplayer.c -lm -lasound -lncurses
|
||||
bankdump: bankdump.c ../argparse.h dmx.h strings.h
|
||||
bankdump: bankdump.c argparse.h dmx.h strings.h
|
||||
gcc -g -o bankdump bankdump.c
|
||||
bankconv: bankconv.c ../argparse.h dmx.h strings.h
|
||||
bankconv: bankconv.c argparse.h dmx.h strings.h
|
||||
gcc -g -o bankconv bankconv.c
|
||||
banktest: banktest.c alsasnd.h ../argparse.h audio.h bank.h dmx.h strings.h wavfile.h opl3.h
|
||||
banktest: banktest.c alsasnd.h argparse.h audio.h bank.h dmx.h strings.h wavfile.h opl3.h
|
||||
gcc -g -o banktest banktest.c -lm -lasound
|
||||
mididump: mididump.c ../argparse.h bank.h midi.h strings.h
|
||||
mididump: mididump.c argparse.h bank.h midi.h strings.h
|
||||
gcc -g -o mididump mididump.c
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "strings.h"
|
||||
#include "dmx.h"
|
||||
#define ARGPARSE_DE
|
||||
#include "../argparse.h"
|
||||
#include "argparse.h"
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
char *dmxname = NULL;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "strings.h"
|
||||
#include "dmx.h"
|
||||
#define ARGPARSE_DE
|
||||
#include "../argparse.h"
|
||||
#include "argparse.h"
|
||||
|
||||
void dump_bank(bank_instr *instr, uint8_t prog, uint8_t name) {
|
||||
bank_instr *ins = &instr[prog];
|
||||
|
|
|
@ -25,7 +25,7 @@ void mid_log(char *format, ...) {
|
|||
#include "bank.h"
|
||||
#include "audio.h"
|
||||
#define ARGPARSE_DE
|
||||
#include "../argparse.h"
|
||||
#include "argparse.h"
|
||||
|
||||
bool tst_note(aud_handle *dev, bank_instr *instr, opl3_chip *chip, bank_handle *bank, uint32_t samplerate, uint8_t prog, uint8_t note, uint32_t len, uint32_t pause) {
|
||||
if(instr[prog].op == b_op0) {
|
||||
|
|
|
@ -32,7 +32,7 @@ void mid_tlog(int type, char *text) {
|
|||
|
||||
#include "midi.h"
|
||||
#define ARGPARSE_DE
|
||||
#include "../argparse.h"
|
||||
#include "argparse.h"
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
char *midname = NULL;
|
||||
|
|
|
@ -247,7 +247,7 @@ void mid_dlog(char *format, ...) {
|
|||
#include "midi.h"
|
||||
#include "audio.h"
|
||||
#define ARGPARSE_DE
|
||||
#include "../argparse.h"
|
||||
#include "argparse.h"
|
||||
|
||||
#define PLR_REFRESH 16
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue