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 222B

1234567
  1. build :
  2. gcc -Wall -c tables.c -o tables.o
  3. bison -d -t as.y
  4. flex -o lex.yy.c al.lex
  5. gcc -Wall -c as.tab.c -o as.tab.o
  6. gcc -Wall -c lex.yy.c -o lex.yy.o
  7. gcc as.tab.o lex.yy.o tables.o -ll -o rondoudou_cross_assembleur