summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2009-03-24 04:58:46 +0000
committerPeter Johnson <peter@tortall.net>2009-03-24 04:58:46 +0000
commitbf635274b11d3979293cfbd8d5366c37b0f1b784 (patch)
treefb2c80a8ab9221d64079b7807a0b65b11e5b64ca
parent4d2de8713a9bf3307cdd5696050207d9fd83bb02 (diff)
downloadyasm-bf635274b11d3979293cfbd8d5366c37b0f1b784.tar.gz
Rename tasm to ytasm in Unix builds.
We aren't compatible enough to call ourselves the "real" one. svn path=/trunk/yasm/; revision=2183
-rw-r--r--Mkfiles/Makefile.dj8
-rw-r--r--Mkfiles/Makefile.flat8
-rw-r--r--frontends/tasm/Makefile.inc10
3 files changed, 13 insertions, 13 deletions
diff --git a/Mkfiles/Makefile.dj b/Mkfiles/Makefile.dj
index 451bfade..e3702ebf 100644
--- a/Mkfiles/Makefile.dj
+++ b/Mkfiles/Makefile.dj
@@ -13,7 +13,7 @@ CFLAGS=-DHAVE_CONFIG_H -IMkfiles/dj -O -I.
CC?=gcc
BUILDCC?=$(CC)
-all: yasm tasm
+all: yasm ytasm
LIBYASM_OBJS= \
libyasm/assocdat.o \
@@ -149,7 +149,7 @@ YASM_OBJS= \
$(LIBYASM_OBJS) \
$(MODULES_OBJS)
-TASM_OBJS= \
+YTASM_OBJS= \
frontends/tasm/tasm.o \
frontends/tasm/tasm-options.o \
$(LIBYASM_OBJS) \
@@ -249,8 +249,8 @@ genperf: $(GENPERF_SRCS)
yasm: $(YASM_OBJS)
$(CC) -o yasm $(YASM_OBJS)
-tasm: $(TASM_OBJS)
- $(CC) -o tasm $(TASM_OBJS)
+ytasm: $(YTASM_OBJS)
+ $(CC) -o ytasm $(YTASM_OBJS)
.c.o:
$(CC) -c $(CFLAGS) -o $@ $<
diff --git a/Mkfiles/Makefile.flat b/Mkfiles/Makefile.flat
index 28cb7dcf..d97a491d 100644
--- a/Mkfiles/Makefile.flat
+++ b/Mkfiles/Makefile.flat
@@ -16,7 +16,7 @@ CFLAGS=-DHAVE_CONFIG_H -IMkfiles -I.
CC?=gcc
BUILDCC?=$(CC)
-all: yasm tasm
+all: yasm ytasm
LIBYASM_OBJS= \
libyasm/assocdat.o \
@@ -152,7 +152,7 @@ YASM_OBJS= \
$(LIBYASM_OBJS) \
$(MODULES_OBJS)
-TASM_OBJS= \
+YTASM_OBJS= \
frontends/tasm/tasm.o \
frontends/tasm/tasm-options.o \
$(LIBYASM_OBJS) \
@@ -252,8 +252,8 @@ genperf: $(GENPERF_SRCS)
yasm: $(YASM_OBJS)
$(CC) -o yasm $(YASM_OBJS)
-tasm: $(TASM_OBJS)
- $(CC) -o tasm $(TASM_OBJS)
+ytasm: $(YTASM_OBJS)
+ $(CC) -o ytasm $(YTASM_OBJS)
.c.o:
$(CC) -c $(CFLAGS) -o $@ $<
diff --git a/frontends/tasm/Makefile.inc b/frontends/tasm/Makefile.inc
index 69ec826c..22370df8 100644
--- a/frontends/tasm/Makefile.inc
+++ b/frontends/tasm/Makefile.inc
@@ -1,9 +1,9 @@
# $Id: Makefile.inc 1463 2006-04-05 05:39:23Z peter $
-bin_PROGRAMS += tasm
+bin_PROGRAMS += ytasm
-tasm_SOURCES = frontends/tasm/tasm.c
-tasm_SOURCES += frontends/tasm/tasm-options.c
-tasm_SOURCES += frontends/tasm/tasm-options.h
+ytasm_SOURCES = frontends/tasm/tasm.c
+ytasm_SOURCES += frontends/tasm/tasm-options.c
+ytasm_SOURCES += frontends/tasm/tasm-options.h
-tasm_LDADD = libyasm.a $(INTLLIBS)
+ytasm_LDADD = libyasm.a $(INTLLIBS)