25 lines
480 B
Makefile
25 lines
480 B
Makefile
CC=gcc
|
|
CFLAGS=-g
|
|
LDFLAGS=-g
|
|
|
|
elea: \
|
|
elea.o \
|
|
governo.o \
|
|
accumulatore.o \
|
|
memoria.o \
|
|
ricerca.o \
|
|
algebra.o \
|
|
telescrivente.o \
|
|
hello_world.o \
|
|
long_division.o
|
|
|
|
hello_world.c: hello_world.elea-txt caratteri.py
|
|
python caratteri.py $<
|
|
|
|
long_division.c: long_division.elea-txt caratteri.py
|
|
python caratteri.py $<
|
|
|
|
clean: FORCE
|
|
@rm -f elea *.o tags hello_world.c long_division.c
|
|
|
|
.PHONY: FORCE
|