Mercurial > hg > beaglert
comparison Makefile @ 380:9dc5a0ccad25 prerelease
Fixed missing ) in Makefile, and removed unnecessary Utilities.h includes
author | andrewm |
---|---|
date | Sun, 12 Jun 2016 23:03:57 +0100 |
parents | a430a16d2c02 |
children | e42bc9ba7550 |
comparison
equal
deleted
inserted
replaced
379:24c3a0663d54 | 380:9dc5a0ccad25 |
---|---|
22 # if we are building an example, just copy it to the projects/ folder | 22 # if we are building an example, just copy it to the projects/ folder |
23 # and tehn treat it as a project | 23 # and tehn treat it as a project |
24 ifdef EXAMPLE | 24 ifdef EXAMPLE |
25 PROJECT?=exampleTempProject | 25 PROJECT?=exampleTempProject |
26 PROJECT_DIR?=$(abspath projects/$(PROJECT)) | 26 PROJECT_DIR?=$(abspath projects/$(PROJECT)) |
27 $(shell mkdir -p $(abspath projects) | 27 $(shell mkdir -p $(abspath projects)) |
28 $(shell rm -rf $(PROJECT_DIR)) | 28 $(shell rm -rf $(PROJECT_DIR)) |
29 $(shell cp -r examples/$(EXAMPLE) $(PROJECT_DIR)) | 29 $(shell cp -r examples/$(EXAMPLE) $(PROJECT_DIR)) |
30 else | 30 else |
31 PROJECT_DIR := $(abspath projects/$(PROJECT)) | 31 PROJECT_DIR := $(abspath projects/$(PROJECT)) |
32 endif | 32 endif |