diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-05-12 18:06:08 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-05-12 18:06:08 +0200 |
| commit | 82d58bc5e1e4b03457f7d48907ec2e5e52bdf5bd (patch) | |
| tree | 077fcdb576283f8ea59e1e9703ab52bd8223e7f6 /Makefile | |
| download | fourier-series-viz-82d58bc5e1e4b03457f7d48907ec2e5e52bdf5bd.tar.gz fourier-series-viz-82d58bc5e1e4b03457f7d48907ec2e5e52bdf5bd.tar.bz2 fourier-series-viz-82d58bc5e1e4b03457f7d48907ec2e5e52bdf5bd.zip | |
Initial commit with boilerplate SDL2
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7e9386d --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CC = gcc +CFLAGS = -Wall -Wextra $(shell pkgconf --cflags sdl2) +LDFLAGS = $(shell pkgconf --libs sdl2) + +NAME = fourier-series-viz + +all: $(NAME) + +$(NAME): main.o + $(CC) -o $@ $(LDFLAGS) $^ |
