25 lines
277 B
Makefile
25 lines
277 B
Makefile
.PHONY: clean, mrproper
|
|
CC = gcc
|
|
CFLAGS = -g -Wall
|
|
|
|
all: ex1 ex2 ex3 ex4 ex5
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
%: %.o
|
|
$(CC) $(CFLAGS) -o $@ $+
|
|
|
|
clean:
|
|
rm -f *.o core.*
|
|
|
|
mrproper: clean
|
|
rm -f ex1
|
|
|
|
run: ex6
|
|
./$<
|
|
|
|
graph: run
|
|
graph -Tpng plot > plot.png
|
|
nsxiv plot.png
|