Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
*.d
*.o
build
*.d
hode
hode.ini

.DS_Store

HOD.PAF
SETUP.DAT
*_HOD.LVL
*_HOD.SSS
*_HOD.MST

setup.cfg
hode.ini

cache/
cache_test/

CLAUDE.md
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
SDL_CFLAGS = `sdl2-config --cflags`
SDL_LIBS = `sdl2-config --libs`

CPPFLAGS += -g -Wall -Wextra -Wno-unused-parameter -Wpedantic $(SDL_CFLAGS) $(DEFINES) -MMD
CPPFLAGS += -g -std=c++11 -Wall -Wextra -Wno-unused-parameter -Wpedantic $(SDL_CFLAGS) $(DEFINES) -MMD

SRCS = andy.cpp benchmark.cpp fileio.cpp fs_posix.cpp game.cpp \
SRCS = andy.cpp automation_api.cpp benchmark.cpp edge_smooth.cpp \
fileio.cpp fs_posix.cpp game.cpp hd_compositor.cpp \
level1_rock.cpp level2_fort.cpp level3_pwr1.cpp level4_isld.cpp \
level5_lava.cpp level6_pwr2.cpp level7_lar1.cpp level8_lar2.cpp level9_dark.cpp \
lzw.cpp main.cpp mdec.cpp menu.cpp mixer.cpp monsters.cpp paf.cpp random.cpp \
resource.cpp screenshot.cpp sound.cpp staticres.cpp system_sdl2.cpp \
util.cpp video.cpp
resource.cpp screenshot.cpp sound.cpp sprite_upscaler.cpp \
staticres.cpp system_sdl2.cpp util.cpp video.cpp

SCALERS := scaler_xbr.cpp

Expand Down
Loading