Skip to content

Commit

Permalink
Merge pull request #478 from straight-shoota/infra/Makefile-portable
Browse files Browse the repository at this point in the history
Fix portable variable assignments in Makefile
  • Loading branch information
Sija authored Oct 11, 2024
2 parents eb76921 + 13c2f18 commit dce8a2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ all:

-include Makefile.local # for optional local options

BUILD_TARGET ::= bin/ameba
BUILD_TARGET := bin/ameba

DESTDIR ?= ## Install destination dir
PREFIX ?= /usr/local## Install path prefix
Expand All @@ -28,8 +28,8 @@ INSTALL_BIN ?= /usr/bin/install
SHARD_BIN ?= ../../bin
CRFLAGS ?= -Dpreview_mt

SRC_SOURCES ::= $(shell find src -name '*.cr' 2>/dev/null)
DOC_SOURCE ::= src/**
SRC_SOURCES := $(shell find src -name '*.cr' 2>/dev/null)
DOC_SOURCE := src/cli.cr

.PHONY: all
all: build
Expand Down

0 comments on commit dce8a2c

Please sign in to comment.