src.mk 248 B

1234567
  1. SRCALG=$(wildcard $(ROOT)/$(DIR_ALG)/*.pl)
  2. ALGE=$(SRCALG:$(ROOT)/$(DIR_ALG)/%.pl=$(ROOT)/$(DIR_ASM)/%.s)
  3. # Compilation from sources (.pl) to asm (.s)
  4. $(ROOT)/$(DIR_ASM)/%.s: $(ROOT)/$(DIR_ALG)/%.pl
  5. @echo "Compiling ... : $@"
  6. @$(GPL) -S -o $@ $<