Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacShelton committed Nov 11, 2021
2 parents 19344a4 + c4b6133 commit 87baa86
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ WINDOWS_WINRES=C:/Users/isaac/Projects/mingw64/bin/windres
WINDOWS_LLVM_LIB=C:/Users/isaac/Projects/llvm-7.0.0.src/mingw-release/lib
WINDOWS_LLVM_INCLUDE=C:/Users/isaac/Projects/llvm-7.0.0.src/include
WINDOWS_LLVM_BUILD_INCLUDE=C:/Users/isaac/Projects/llvm-7.0.0.src/mingw-release/include
WINDOWS_LIBCURL_LIB=
WINDOWS_LIBCURL_INCLUDE=
WINDOWS_LIBCURL_LIB=C:/Users/isaac/Projects/curl-7.79.1_4-win64-mingw/curl-7.79.1-win64-mingw/lib
WINDOWS_LIBCURL_INCLUDE=C:/Users/isaac/Projects/curl-7.79.1_4-win64-mingw/curl-7.79.1-win64-mingw/include
WINDOWS_LIBCURL_BUILD_INCLUDE=
UNIX_CC=gcc
UNIX_CXX=g++
Expand Down Expand Up @@ -61,6 +61,9 @@ ifeq ($(OS), Windows_NT)

# Libcurl info
ifeq ($(ENABLE_ADEPT_PACKAGE_MANAGER),true)
LIBCURL_INCLUDE_FLAGS=-I$(WINDOWS_LIBCURL_INCLUDE) -I$(WINDOWS_LIBCURL_BULID_INCLUDE)
LIBCURL_LINKER_FLAGS=-L$(WINDOWS_LIBCURL_LIB)
LIBCURL_LIBS=-lcurl # -lz
endif
else
CC=$(UNIX_CC)
Expand Down
26 changes: 12 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,26 @@

A blazing fast language for general purpose programming.

[Download Adept v2.4 for Windows](https://github.com/IsaacShelton/Adept/releases)
[Download Adept v2.5 for Windows](https://github.com/IsaacShelton/Adept/releases)

[Download Adept v2.4 for MacOS](https://github.com/IsaacShelton/Adept/releases)
[Download Adept v2.5 for MacOS](https://github.com/IsaacShelton/Adept/releases)

[Download Adept v2.4 Cross-Compilation Extensions](https://github.com/IsaacShelton/AdeptCrossCompilation/releases/)
[Download Adept v2.5 Cross-Compilation Extensions](https://github.com/IsaacShelton/AdeptCrossCompilation/releases/)

## Resources
[Adept v2.4 Documentation](https://github.com/AdeptLanguage/Adept/wiki)
[Adept v2.5 Documentation](https://github.com/AdeptLanguage/Adept/wiki)

[Adept v2.4 Vim Syntax Highlighting](https://github.com/IsaacShelton/AdeptVim)
[Adept v2.5 Vim Syntax Highlighting](https://github.com/IsaacShelton/AdeptVim)

[Adept v2.4 VS-Code Syntax Highlighting](https://github.com/IsaacShelton/AdeptVSCode)
[Adept v2.5 VS-Code Syntax Highlighting](https://github.com/IsaacShelton/AdeptVSCode)

[Adept v2.4 VS-Code Basic Syntax Checking](https://github.com/IsaacShelton/AdeptVSCodeLanguage)
[Adept v2.5 VS-Code Basic Syntax Checking](https://github.com/IsaacShelton/AdeptVSCodeLanguage)

[Adept v2.4 Standard Library](https://github.com/AdeptLanguage/AdeptImport)
[Adept v2.5 Standard Library](https://github.com/AdeptLanguage/AdeptImport)

[Adept v2.4 Working with Domestic and Foreign Libraries](https://github.com/IsaacShelton/AdeptWorkingWithC)
[Adept v2.5 Working with Domestic and Foreign Libraries](https://github.com/IsaacShelton/AdeptWorkingWithC)

[Adept v2.4 MacOS Homebrew Tap](https://github.com/AdeptLanguage/homebrew-tap)

[Adept v2.4 IDE (deprecated)](https://github.com/IsaacShelton/AdeptIDE)
[Adept v2.5 MacOS Homebrew Tap](https://github.com/AdeptLanguage/homebrew-tap)

## Command-Line Usage

Expand All @@ -32,7 +30,7 @@ A blazing fast language for general purpose programming.
- filename - default is 'main.adept'
- options - secondary compiler options

You can optionally use `adept2-4` instead of `adept` if you have multiple versions installed.
You can optionally use `adept2-5` instead of `adept` if you have multiple versions installed.

## Basic Functionality

Expand Down Expand Up @@ -330,7 +328,7 @@ func main(in argc int, in argv **ubyte) int {
### Pragma Directives

```
pragma compiler_version '2.4'
pragma compiler_version '2.5'
pragma project_name 'pragma_directives_example'
pragma optimization aggressive
Expand Down

0 comments on commit 87baa86

Please sign in to comment.