mirror of
https://github.com/ScrelliCopter/VGM-Tools
synced 2025-02-21 04:09:25 +11:00
13 lines
210 B
Makefile
13 lines
210 B
Makefile
TARGET := neoadpcmextract
|
|
SOURCE := neoadpcmextract.c
|
|
CFLAGS := -std=c99 -O2 -pipe -Wall -Wextra -pedantic
|
|
|
|
all: $(TARGET)
|
|
|
|
$(TARGET): $(SOURCE)
|
|
$(CC) $(CFLAGS) $< -o $@
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f $(TARGET)
|