summaryrefslogtreecommitdiff
path: root/libc/error/Makefile
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>2005-01-23 15:31:04 +0100
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:48:50 +0200
commit62c27c1c5cb6257b13dfc9be0394e0d2e86f2735 (patch)
treef702b7e5f80293367e1b6f9812bd45e80378be26 /libc/error/Makefile
parent6cb598cc5f1c8ae6d14381c2776338584368257e (diff)
downloaddev86-62c27c1c5cb6257b13dfc9be0394e0d2e86f2735.tar.gz
Import Dev86src-0.16.17.tar.gzv0.16.17
Diffstat (limited to 'libc/error/Makefile')
-rw-r--r--libc/error/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/libc/error/Makefile b/libc/error/Makefile
index 01a488f..f604c3b 100644
--- a/libc/error/Makefile
+++ b/libc/error/Makefile
@@ -4,14 +4,16 @@
CFLAGS=$(ARCH) $(CCFLAGS) $(DEFS)
-ifeq ($(PLATFORM),i86-FAST)
-OBJ=error.o sys_errlist.o perror.o sys_siglist.o __assert.o
-else
ifeq ($(LIB_OS),ELKS)
+
+ifneq ($(LIB_CPU),i86)
OBJ=error2.o perror.o sys_siglist.o __assert.o
else
-OBJ=__assert.o
+OBJ=error.o sys_errlist.o perror.o sys_siglist.o __assert.o
endif
+
+else
+OBJ=__assert.o
endif
all: $(LIBC)($(OBJ))