Move all C code to a subdirectory.

This commit is contained in:
Peter De Wachter 2014-05-01 19:27:09 +02:00
parent c85b81caf0
commit a5458c470a
27 changed files with 8 additions and 8 deletions

View File

@ -4,14 +4,14 @@ SDL2_CONFIG = sdl2-config
RISC_CFLAGS = $(CFLAGS) -std=c99 `$(SDL2_CONFIG) --cflags --libs` -lm
RISC_SOURCE = \
sdl-main.c \
sdl-ps2.c sdl-ps2.h \
risc.c risc.h risc-boot.inc \
risc-fp.c risc-fp.h \
disk.c disk.h \
pclink.c pclink.h \
raw-serial.c raw-serial.h \
sdl-clipboard.c sdl-clipboard.h
src/sdl-main.c \
src/sdl-ps2.c src/sdl-ps2.h \
src/risc.c src/risc.h src/risc-boot.inc \
src/risc-fp.c src/risc-fp.h \
src/disk.c src/disk.h \
src/pclink.c src/pclink.h \
src/raw-serial.c src/raw-serial.h \
src/sdl-clipboard.c src/sdl-clipboard.h
risc: $(RISC_SOURCE)

View File

View File

View File

View File