Blame view

arith/Makefile 237 Bytes
Imanol-Mikel Barba Sabariego authored
1
TARGETS = adder substractor
Imanol-Mikel Barba Sabariego authored
2
3
4
5
6
7
8
9
10

.PHONY: all clean

all: $(TARGETS)

clean:
	rm -rf $(TARGETS)

adder:
Imanol-Mikel Barba Sabariego authored
11
12
13
	gcc -I../common/ ../common/auxiliar.c adder.c -o adder 
substractor:
	gcc -I../common/ ../common/auxiliar.c substractor.c -o substractor