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

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