Files
testrepo/Makefile
2025-09-12 18:01:07 +03:00

9 lines
82 B
Makefile

PROG=a.exe
OBJS=main.o
all: $(PROG)
$(PROG): $(OBJS)
$(CC) $(CFLAGS) -o $@ $<