No Description
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.

Makefile 231B

1234567891011121314151617181920
  1. default : myprogram
  2. all : myprogram
  3. clean :
  4. rm -f *.o myprogram
  5. myprogram : annclasses.o main.o
  6. g++ -Wall $^ -o myprogram
  7. %.o : %.c
  8. gcc -Wall $< -c
  9. send :
  10. git pull
  11. git add .
  12. git commit
  13. git push
  14. rebuild : clean default