Skip to content

Commit

Permalink
Bump version for release and use DESTDIR for pacman packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
fincs committed May 12, 2018
1 parent 5e1bc20 commit 52cdcb3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ endif
include $(DEVKITARM)/3ds_rules

export CITRO3D_MAJOR := 1
export CITRO3D_MINOR := 3
export CITRO3D_PATCH := 1
export CITRO3D_MINOR := 4
export CITRO3D_PATCH := 0

VERSION := $(CITRO3D_MAJOR).$(CITRO3D_MINOR).$(CITRO3D_PATCH)

Expand Down Expand Up @@ -100,8 +100,8 @@ dist-src:
dist: dist-src dist-bin

install: dist-bin
mkdir -p $(DEVKITPRO)/libctru
bzip2 -cd citro3d-$(VERSION).tar.bz2 | tar -xf - -C $(DEVKITPRO)/libctru
mkdir -p $(DESTDIR)$(DEVKITPRO)/libctru
bzip2 -cd citro3d-$(VERSION).tar.bz2 | tar -xf - -C $(DESTDIR)$(DEVKITPRO)/libctru

lib:
@[ -d $@ ] || mkdir -p $@
Expand Down
2 changes: 1 addition & 1 deletion test/pc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ OFILES := $(addprefix build/,$(CXXFILES:.cpp=.o)) \
DFILES := $(wildcard build/*.d)

CFLAGS := -Wall -g -pipe -I../../include --coverage
CXXFLAGS := $(CFLAGS) -std=gnu++11 -DGLM_FORCE_RADIANS
CXXFLAGS := $(CFLAGS) $(CPPFLAGS) -std=gnu++11 -DGLM_FORCE_RADIANS
LDFLAGS := $(ARCH) -pipe -lm --coverage

.PHONY: all clean lcov
Expand Down

0 comments on commit 52cdcb3

Please sign in to comment.