Advent of Code

Check-in [e5bb3b830c]
Login

Check-in [e5bb3b830c]

Overview
Comment:comment inside command
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: e5bb3b830c0f78a8c8860da127849b550615075df08c99085365472ce351f001
User & Date: nnz on 2024-12-03 14:56:23
Other Links: manifest | tags
Context
2024-12-03
15:21
comment about 13/8 check-in: b4c322283a user: nnz tags: trunk
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
Changes

Modified Makefile from [516da70523] to [b36c017e36].

9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 \







|







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
aocdbg: *.c *.h
	gcc -std=c2x -pedantic \
	-D_XOPEN_SOURCE=800 \
	-Werror -Wall -Wextra \
	-Wbad-function-cast \
	-Wcast-align \
	-Wcast-qual \
	-Wconversion $(: pesky little option; makes my code abuse casts ) \
	-Wfloat-equal \
	-Wformat=2 \
	-Wformat-signedness \
	-Winline \
	-Wlogical-op \
	-Wnested-externs \
	-Wno-missing-braces \