uni

University stuff
git clone git://git.margiolis.net/uni.git
Log | Files | Refs | README | LICENSE

Makefile (174B)


      1 all:
      2 	bison -d syntax.y
      3 	flex lex.l
      4 	cc syntax.tab.c lex.yy.c -lm -o uniclips
      5 	./uniclips input.txt output.txt
      6 
      7 clean:
      8 	rm -f *.yy.c *.output *.tab.c *.tab.h uniclips *.core