mirror of https://github.com/zeldaret/tmc.git
moved aif2pcm
This commit is contained in:
parent
ab6b5a21ce
commit
cb0eb2bcd3
|
@ -1,2 +0,0 @@
|
|||
aif2pcm
|
||||
|
|
@ -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
|
|
@ -1,2 +1,3 @@
|
|||
add_subdirectory(agb2mid)
|
||||
add_subdirectory(aif2pcm)
|
||||
add_subdirectory(asset_processor)
|
||||
|
|
|
@ -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)
|
Loading…
Reference in New Issue