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
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2019-02-10 19:10:24 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2019-02-10 19:10:24 +0300
commit8a0b5f122168bcc80f6aee7181e451664f4d5383 (patch)
tree12a4aa28901b3fc54a1ce6cd6a091f58399e1e57
parentbe64517c496d659f0f43293d3666fd09544550ea (diff)
One more fixv3.1b
-rw-r--r--source/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Makefile b/source/Makefile
index f40d8de..6d0f506 100644
--- a/source/Makefile
+++ b/source/Makefile
@@ -37,7 +37,7 @@ default: $(TARGNES)
clean:
$(RM) *.o
ifeq ($(OS),Windows_NT)
- @if [ -f "$(TARGNES)" ]; then for f in `cygcheck "$(TARGNES)" | grep .dll` ; do rm $(EXEDIR)/`basename "$$f"` ; done fi
+ @if [ -f "$(TARGNES)" ]; then for f in `cygcheck "$(TARGNES)" | grep .dll | grep msys` ; do rm -f $(EXEDIR)/`basename "$$f"` ; done fi
endif
$(RM) $(TARGNES)
$(RM) $(COMMIT_INFO)
@@ -62,5 +62,5 @@ $(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
+ @for f in `cygcheck "$(TARGNES)" | grep .dll | grep msys` ; do cp -vf `cygpath "$$f"` $(EXEDIR)/ ; done
endif