Skip to content

Commit a03d564

Browse files
committed
Added .gitattributes to correct line ending issues; made default makefile build binaries
1 parent 8d95fe0 commit a03d564

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

.gitattributes

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Explicitly declare text files you want to always be normalized and converted
5+
# to native line endings on checkout.
6+
*.cpp text
7+
*.h text
8+
9+
# Denote all files that are truly binary and should not be modified.
10+
*.png binary
11+
*.jpg binary

makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,18 @@ else
4747
endif
4848
endif
4949

50-
all:
50+
all: build_all
51+
52+
help:
5153
@echo "Usage: make [TYPE]"
5254
@echo
5355
@echo "Enter package type to build. Options:"
5456
@echo
5557
@echo " deb debian package"
5658
@echo " win windows installer (not yet available)"
5759
@echo " mac mac bundle (not yet available)"
60+
@echo
61+
@echo " no parameter builds only the binaries"
5862

5963

6064
build_all: build_ide build_openspin build_loader

0 commit comments

Comments
 (0)