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:
1
neotools/.gitignore
vendored
1
neotools/.gitignore
vendored
@@ -8,3 +8,4 @@
|
|||||||
*.o
|
*.o
|
||||||
adpcm
|
adpcm
|
||||||
adpcmb
|
adpcmb
|
||||||
|
neoadpcmextract
|
||||||
|
|||||||
12
neotools/neoadpcmextract.Makefile
Normal file
12
neotools/neoadpcmextract.Makefile
Normal 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)
|
||||||
Reference in New Issue
Block a user