Advent of Code

Check-in [da2606395e]
Login

Check-in [da2606395e]

Overview
Comment:Added Makefile (for gcc (Debian 12.2.0-14) 12.2.0)
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: da2606395ee4c1892bb0ed0add3b8ba4f7721b3e74932d6d19c8e20a446bfc3e
User & Date: nnz on 2024-12-03 14:19:12
Original Comment: added Makefile
Other Links: manifest | tags
Context
2024-12-03
14:56
comment inside command check-in: e5bb3b830c user: nnz tags: trunk
14:19
Added Makefile (for gcc (Debian 12.2.0-14) 12.2.0) check-in: da2606395e user: nnz tags: trunk
13:38
changed order within dailies check-in: 3bac9b02b1 user: nnz tags: trunk
Changes

Added Makefile version [516da70523].















































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
aoc: *.c *.h
	gcc -std=c2x -pedantic \
	-D_XOPEN_SOURCE=800 \
	-flto \
	-O3 -DNDEBUG \
	*.c \
	-o aoc

aocdbg: *.c *.h
	gcc -std=c2x -pedantic \
	-D_XOPEN_SOURCE=800 \
	-Werror -Wall -Wextra \
	-Wbad-function-cast \
	-Wcast-align \
	-Wcast-qual \
	-Wconversion \
	-Wfloat-equal \
	-Wformat=2 \
	-Wformat-signedness \
	-Winline \
	-Wlogical-op \
	-Wnested-externs \
	-Wno-missing-braces \
	-Wno-missing-field-initializers \
	-Wold-style-definition \
	-Wpointer-arith \
	-Wredundant-decls \
	-Wshadow \
	-Wstrict-aliasing=2 \
	-Wstrict-overflow=5 \
	-Wstrict-prototypes \
	-Wswitch-default \
	-Wswitch-enum \
	-Wundef \
	-Wunreachable-code \
	-fno-omit-frame-pointer -ffloat-store -fno-common -fstrict-aliasing \
	-Og -ggdb3 \
	*.c \
	-o aocdbg