mirror of
https://github.com/ScrelliCopter/VGM-Tools
synced 2025-02-21 04:09:25 +11:00
rename and build as C
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
TARGET := neoadpcmextract
|
||||
SOURCE := neoadpcmextract.cpp
|
||||
CXXFLAGS := -O2 -pipe -Wall -Wextra -pedantic
|
||||
SOURCE := neoadpcmextract.c
|
||||
CFLAGS := -std=c99 -O2 -pipe -Wall -Wextra -pedantic
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
$(TARGET): $(SOURCE)
|
||||
$(CXX) $(CXXFLAGS) $< -o $@
|
||||
$(CC) $(CFLAGS) $< -o $@
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
|
||||
Reference in New Issue
Block a user