diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-02-09 20:24:01 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-02-09 20:29:59 +0000 |
commit | a58371c419f0f8fc16eaf6335e8c9fb44f5f99a0 (patch) | |
tree | d0e8d5566432ef496a489112388eb8a3583b993d /tools/apultra | |
parent | ce9fedef58f4e826bcefd4ece392b435388e0486 (diff) | |
download | ubox-msx-lib-a58371c419f0f8fc16eaf6335e8c9fb44f5f99a0.tar.gz ubox-msx-lib-a58371c419f0f8fc16eaf6335e8c9fb44f5f99a0.zip |
Fixes in Makefile when detecting Windows OS
Diffstat (limited to 'tools/apultra')
-rw-r--r-- | tools/apultra/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/apultra/Makefile b/tools/apultra/Makefile index a416702..1b246aa 100644 --- a/tools/apultra/Makefile +++ b/tools/apultra/Makefile @@ -21,7 +21,7 @@ OBJS += $(OBJDIR)/src/libdivsufsort/lib/trsort.o all: $(APP) -ifdef ($(OS),Windows_NT) +ifeq ($(OS),Windows_NT) TARGET = apultra.exe else TARGET = apultra |