1
0
mirror of https://github.com/ScrelliCopter/VGM-Tools synced 2025-02-21 04:09:25 +11:00

makefile for crappy vgm pcm scanner util

This commit is contained in:
2019-09-26 22:54:08 +10:00
parent 7e0740d03a
commit 7c5a577fba
3 changed files with 16 additions and 3 deletions

1
neotools/.gitignore vendored
View File

@@ -8,3 +8,4 @@
*.o
adpcm
adpcmb
neoadpcmextract

View File

@@ -0,0 +1,12 @@
TARGET := neoadpcmextract
SOURCE := neoadpcmextract.cpp
CXXFLAGS := -O2 -pipe -Wall -Wextra
all: $(TARGET)
$(TARGET): $(SOURCE)
$(CXX) $(CXXFLAGS) $< -o $@
.PHONY: clean
clean:
rm -f $(TARGET)