TDT4205/exercises/04/vslc/vsl_programs/Makefile

17 lines
492 B
Makefile
Raw Normal View History

2022-03-12 18:09:07 +01:00
VSLC := ../src/vslc
PS2_EXAMPLES := $(patsubst ps2-parser/%.vsl, ps2-parser/%.ast, $(wildcard ps2-parser/*.vsl))
PS3_EXAMPLES := $(patsubst ps3-simplify/%.vsl, ps3-simplify/%.ast, $(wildcard ps3-simplify/*.vsl))
PS4_EXAMPLES := $(patsubst ps4-symtab/%.vsl, ps4-symtab/%.ast, $(wildcard ps4-symtab/*.vsl))
all: $(PS2_EXAMPLES) $(PS3_EXAMPLES) $(PS4_EXAMPLES)
ps2: $(PS2_EXAMPLES)
ps3: $(PS3_EXAMPLES)
ps4: $(PS4_EXAMPLES)
2022-03-12 19:22:05 +01:00
%.ast: %.vsl clean
2022-03-15 22:29:14 +01:00
$(VSLC) -T -s < $^ > $@
2022-03-12 18:09:07 +01:00
clean:
-rm -r */*.ast