Files
AwesomePolytech/OSs/lab4/part-1/Makefile
2025-09-25 23:12:44 +03:00

13 lines
147 B
Makefile

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