2012年12月1日

stack栈

摘要: ./Makefile: 1 mytest:main.o stack.o 2 gcc $^ -o $@ 3 main.o:main.c 4 gcc -I include -c $^ -o $@ 5 stack.o:stack.c 6 gcc -I include -c $^ -o $@ 7 8 clean: 9 rm main.o stack.o mytest./include/stack.h: 1 #ifndef __Jerry_stack__ 2 #define __Jerry_stack__ 3 4 typedef int stackelem; 5 typedef stackele... 阅读全文

posted @ 2012-12-01 22:30 阿加 阅读(222) 评论(0) 推荐(0) 编辑

导航