25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
143 B

  1. CC = gcc
  2. CFLAGS = -O0
  3. SRC = *.c
  4. all: $(patsubst %.c, %.out, $(wildcard *.c))
  5. %.out: %.c Makefile
  6. $(CC) $(CFLAGS) $< -o $@
  7. clean:
  8. rm *.out