Skip to content

Commit

Permalink
added an include guard to make.mk; changed version to 6.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nickeldan committed Sep 2, 2022
1 parent 3395539 commit ae5cbbe
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Vanilla Squad
=============

:Author: Daniel Walker
:Version: 6.0.4
:Date: 2022-08-21
:Version: 6.0.5
:Date: 2022-09-01

Overview
========
Expand Down
4 changes: 4 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
6.0.5:
- make.mk now creates any necessary directories.
- Added an include guard to make.mk.

6.0.4:
- Added the format __attribute__ to several printf-like functions.
- Added the BUILD_DEPS variable to make.mk.
Expand Down
2 changes: 1 addition & 1 deletion include/vasq/definitions.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* @brief Current version of the library.
*/
#define VASQ_VERSION "6.0.4"
#define VASQ_VERSION "6.0.5"

#ifndef NO_OP
#define NO_OP ((void)0)
Expand Down
5 changes: 5 additions & 0 deletions make.mk
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
ifndef VASQ_MK
VASQ_MK :=

VASQ_LIB_DIR ?= $(VASQ_DIR)
VASQ_OBJ_DIR ?= $(VASQ_DIR)/source

Expand Down Expand Up @@ -39,3 +42,5 @@ vasq_clean:
@rm -f $(VASQ_SHARED_LIBRARY) $(VASQ_STATIC_LIBRARY) $(VASQ_OBJECT_FILES)

CLEAN_TARGETS += vasq_clean

endif

0 comments on commit ae5cbbe

Please sign in to comment.