Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/nesasm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2019-02-10 18:49:21 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2019-02-10 18:49:21 +0300
commit37493e1419eb17adef54a5e5fc6a22bfc8241094 (patch)
treebc8096c47b99ca23428f8a7037b5615e6869d0b8 /source
parent105995c6cd3b07688d916f8fd311cbe2833c4f70 (diff)
Makefile changed to include .dll files under Windows
Diffstat (limited to 'source')
-rw-r--r--source/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/Makefile b/source/Makefile
index 1a77fc7..38eda71 100644
--- a/source/Makefile
+++ b/source/Makefile
@@ -58,3 +58,7 @@ $(COMMIT_INFO):
$(TARGNES) : $(OBJS)
$(CC) -o $(TARGNES) $(OBJS) $(LDFLAGS)
+ifeq ($(OS),Windows_NT)
+ @for f in `cygcheck $(TARGNES) | grep .dll` ; do cp -vf `cygpath "$$f"` $(EXEDIR)/ ; done
+endif
+