Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0cc7bdb

Browse files
committedFeb 12, 2025·
repo: update git ignore
1 parent 5ec12d9 commit 0cc7bdb

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed
 

‎.gitignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11

22
development/
33
*.bak
4-
Bootil/projects/obj/**
4+
*.obj
5+
*.sln
6+
*.make
7+
*.pdb
58
**.vcxproj**
69
lua-shared.vpc.sentinel
10+
Bootil/projects/Makefile
11+
Bootil/projects/**/*.lib
12+
Bootil/projects/**/*.a

‎Bootil/projects/Makefile

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# GNU Make workspace makefile autogenerated by Premake
1+
# Alternative GNU Make workspace makefile autogenerated by Premake
22

33
ifndef config
44
config=debug_x32
@@ -10,15 +10,18 @@ endif
1010

1111
ifeq ($(config),debug_x32)
1212
bootil_static_config = debug_x32
13-
endif
14-
ifeq ($(config),debug_x64)
13+
14+
else ifeq ($(config),debug_x64)
1515
bootil_static_config = debug_x64
16-
endif
17-
ifeq ($(config),release_x32)
16+
17+
else ifeq ($(config),release_x32)
1818
bootil_static_config = release_x32
19-
endif
20-
ifeq ($(config),release_x64)
19+
20+
else ifeq ($(config),release_x64)
2121
bootil_static_config = release_x64
22+
23+
else
24+
$(error "invalid configuration $(config)")
2225
endif
2326

2427
PROJECTS := bootil_static

0 commit comments

Comments
 (0)
Please sign in to comment.