You can not select more than 25 topics 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