1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-12-08 14:58:33 +00:00

merged blitplay repository

This commit is contained in:
Wei-ju Wu
2015-11-30 15:24:58 -08:00
parent bbc0d4d5c8
commit 4cb53b735e
9 changed files with 1064 additions and 0 deletions

15
blitplay/Makefile Normal file
View File

@ -0,0 +1,15 @@
CC=vc +aos68k
CFLAGS=-c99 -I$(MUI_INC) -I$(NDK_INC) -DCLIB_MUIMASTER_PROTOS_H
OBJECTS=main.o canvas.o
EXE=blitplay
all: $(EXE)
clean:
rm -f *.o $(EXE)
c.o :
$(CC) $(CFLAGS) -c $<
$(EXE):$(OBJECTS) mui_util.h canvas.h
$(CC) $(OBJECTS) -lamiga -o $(EXE)