mirror of
https://github.com/ScrelliCopter/VGM-Tools
synced 2025-02-21 04:09:25 +11:00
Initial commit.
This commit is contained in:
15
adpcmb.Makefile
Normal file
15
adpcmb.Makefile
Normal file
@@ -0,0 +1,15 @@
|
||||
CC = gcc
|
||||
CFLAGS = -O3
|
||||
|
||||
SRC = .
|
||||
OBJ = .
|
||||
|
||||
OUT_OBJ = $(OBJ)/adpcmb.exe
|
||||
|
||||
all: $(OUT_OBJ)
|
||||
|
||||
$(OBJ)/%.exe: $(SRC)/%.c
|
||||
$(CC) $(CCFLAGS) $(MAINFLAGS) $< -o $@
|
||||
|
||||
clean:
|
||||
rm $(OUT_OBJ)
|
||||
Reference in New Issue
Block a user