1
0
mirror of https://github.com/ScrelliCopter/VGM-Tools synced 2025-02-21 04:09:25 +11:00
Files
VGM-Tools/neotools/neoadpcmextract.Makefile
2019-10-01 23:46:52 +10:00

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)