started implementation of XHDI caller interface

This commit is contained in:
Markus Fröschle
2013-05-03 05:52:08 +00:00
parent d499057d5f
commit 9fd2f28ec3
3 changed files with 483 additions and 2 deletions

View File

@@ -14,11 +14,13 @@ APP=$(EMUSD).prg
all: $(APP)
SOURCES=$(EMUSD).c
SOURCES=$(EMUSD).c \
xhdi.c
OBJECTS=$(SOURCES:.c=.o)
$(APP): $(OBJECTS)
$(CC) $(CFLAGS) $< -o $(APP)
$(CC) $(CFLAGS) $(OBJECTS) -o $(APP)
.PHONY clean:
- rm -rf *.o $(APP)