Files
AwesomePolytech/OSs/lab3/level-2/Makefile
2025-09-18 00:26:56 +03:00

13 lines
154 B
Makefile

targets = main
all: $(targets)
main: main.o buff.o
$(CC) -o $@ $^ $(CFLAGS)
%.o: %.c
$(CC) -c $^ -o $@ $(CFLAGS)
clean:
rm -f $(targets)
rm -f *.o