xxd/src/Makefile

18 lines
274 B
Makefile
Raw Normal View History

2025-02-06 13:48:20 -05:00
TARGET=xxd
CC=gcc
OBJ = main.o hex.o file.o
2025-02-06 13:48:20 -05:00
$(TARGET): $(OBJ)
mkdir -p ../build
$(CC) -Wall -g -o $(TARGET) $(OBJ) -g
mv $(TARGET) ../build/
main.o: include/hex.h include/file.h
2025-02-06 13:48:20 -05:00
hex.o: include/hex.h
file.o: include/file.h
2025-02-06 13:48:20 -05:00
.PHONY: clean
clean:
rm -rf ../build $(OBJ)