diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-05-13 10:43:36 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-05-13 10:43:36 +0200 |
| commit | 660a556b7dd9b7a5cfb1f3e1e3a55a6975675f91 (patch) | |
| tree | eccad5697a2785c2bf0debbea610d8ab84ed003a /Makefile | |
| parent | af1d25613b7e1bace9ccabad1bcc9136d6417b07 (diff) | |
| download | fourier-series-viz-master.tar.gz fourier-series-viz-master.tar.bz2 fourier-series-viz-master.zip | |
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ CC = gcc -CFLAGS = -Wall -Wextra $(shell pkgconf --cflags sdl2 SDL2_gfx) +CFLAGS = -Wall -Wextra -pedantic $(shell pkgconf --cflags sdl2 SDL2_gfx) LDFLAGS = -lm $(shell pkgconf --libs sdl2 SDL2_gfx) NAME = fourier-series-viz @@ -8,3 +8,8 @@ all: $(NAME) $(NAME): main.o $(CC) -o $@ $(LDFLAGS) $^ + +fclean: + rm -f main.o $(NAME) + +re: fclean all |
