1
0
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:
2019-10-01 23:46:52 +10:00
parent 454fcd3226
commit 07ee0b546c
2 changed files with 3 additions and 3 deletions

View File

@@ -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: