14 lines
166 B
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
|