moved aif2pcm

This commit is contained in:
Henny022p 2021-11-23 06:05:53 +01:00
parent ab6b5a21ce
commit cb0eb2bcd3
7 changed files with 8 additions and 20 deletions

View File

@ -1,2 +0,0 @@
aif2pcm

View File

@ -1,18 +0,0 @@
CC = gcc
CFLAGS = -Wall -Wextra -Wno-switch -Werror -std=c11 -O2
LIBS = -lm
SRCS = main.c extended.c
.PHONY: all clean
all: aif2pcm
@:
aif2pcm: $(SRCS)
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)
clean:
$(RM) aif2pcm aif2pcm.exe

View File

@ -1,2 +1,3 @@
add_subdirectory(agb2mid)
add_subdirectory(aif2pcm)
add_subdirectory(asset_processor)

View File

@ -0,0 +1,7 @@
file(GLOB_RECURSE sources *.c)
add_executable(aif2pcm ${sources})
target_include_directories(aif2pcm PRIVATE .)
target_link_libraries(aif2pcm PRIVATE m)
install(TARGETS aif2pcm RUNTIME DESTINATION bin)