This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
sys_prog/gallery/Makefile
Claudio Maggioni (maggicl) cb4cc2bbe2 Added assignment 2 (done)
2019-11-17 23:27:15 +01:00

14 lines
166 B
Makefile

all: test
gallery.o: gallery.c
$(CC) -Wall -c -o $@ $< $(CFLAGS)
test: gallery.o test.c
$(CC) -Wall -o $@ $^ $(CFLAGS)
tidy:
rm -f *.o
clean: tidy
rm -f test