You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 179 B

1 year ago
123456789101112131415
  1. CC = g++
  2. CFLAGS = -Wall -Wextra -g
  3. all: run
  4. prog: main.o
  5. $(CC) $(CFLAGS) main.o -o prog
  6. main.o: main.cc
  7. $(CC) $(CFLAGS) -c main.cc
  8. run: prog
  9. ./prog
  10. clean:
  11. rm -f *.o prog

计算机大作业

Contributors (1)