fork download
  1. ****Makefile****
  2. CXXFLAGS=-std=c++11 -Wall -MMD
  3.  
  4. OBJS=main.o
  5.  
  6. all: $(OBJS)
  7. cc -o a.exe $(OBJS)
  8.  
  9. clean:
  10. rm -f *.d
  11. rm -f *.o
  12. rm -f *.exe
  13.  
  14. -include *.d
  15.  
  16. ****main.d****
  17. main.o: main.cpp expression.h terminal.h expression_base.h subscription.h \
  18. tag.h function_call.h unary_operator.h binary_operator.h \
  19. expression_builder.h literal.h io.h ../Tuple/for_each.h \
  20. ../Tuple/unpack_tuple.h ../Tuple/index_tuple.h to_string.h ../Tuple/io.h \
  21. ../Tuple/transform.h default_context.h ../Tuple/index_tuple.h \
  22. ../Tuple/unpack_tuple.h evaluate.h callable_context.h
  23.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty