messy experimentation commit

This commit is contained in:
Shaun Inman 2023-01-03 22:17:49 -05:00
parent ec15d449e1
commit f6f8fa6a8f
13 changed files with 2472 additions and 426 deletions

View file

@ -10,6 +10,6 @@ CFLAGS += -I. -I../common -I./libretro-common/include -DPLATFORM=\"$(UNION_PLAT
LDFLAGS = -ldl -lSDL -lSDL_image -lSDL_ttf -lmsettings
all:
$(CC) main.c ../common/scaler_neon.c -o $(TARGET) $(CFLAGS) $(LDFLAGS)
$(CC) main.c ../common/scaler_neon.c ../common/utils.c ../common/api.c -o $(TARGET) $(CFLAGS) $(LDFLAGS)
clean:
rm -f $(TARGET)