summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-01-28 20:43:42 -0500
committerJakob Kaivo <jkk@ung.org>2019-01-28 20:43:42 -0500
commit2ca3405ef41541040c45c6cf8338dfa8ce0ce9ee (patch)
tree3be4bd13499d1014d906c85e26bad16349cef8c7 /Makefile
parente38d9cd6d1f8beafa1e42001f24fcfb7d2fa448a (diff)
correctly identify the difference between structs, unions, and functions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 0 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 6da31dff..324c88a3 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,6 @@ libc_OBJS = $(OBJDIR)/libc.o $(OBJDIR)/x86-64.o \
$(OBJDIR)/toupper.o \
$(OBJDIR)/localeconv.o \
$(OBJDIR)/setlocale.o \
- $(OBJDIR)/struct_lconv.o \
$(OBJDIR)/longjmp.o \
$(OBJDIR)/setjmp.o \
$(OBJDIR)/raise.o \
@@ -127,7 +126,6 @@ libc_OBJS = $(OBJDIR)/libc.o $(OBJDIR)/x86-64.o \
$(OBJDIR)/localtime.o \
$(OBJDIR)/mktime.o \
$(OBJDIR)/strftime.o \
- $(OBJDIR)/struct_tm.o \
$(OBJDIR)/time.o
libc.a: $(libc_OBJS)
@@ -664,14 +662,6 @@ $(OBJDIR)/strtoul.o: std/9899-1990/stdlib/strtoul.c $(INCDIR)/stdlib.h
-@mkdir -p $(OBJDIR)
$(CC) $(CFLAGS) -c std/9899-1990/stdlib/strtoul.c -o $@
-$(OBJDIR)/struct_lconv.o: std/9899-1990/locale/struct_lconv.c $(INCDIR)/locale.h
- -@mkdir -p $(OBJDIR)
- $(CC) $(CFLAGS) -c std/9899-1990/locale/struct_lconv.c -o $@
-
-$(OBJDIR)/struct_tm.o: std/9899-1990/time/struct_tm.c $(INCDIR)/time.h
- -@mkdir -p $(OBJDIR)
- $(CC) $(CFLAGS) -c std/9899-1990/time/struct_tm.c -o $@
-
$(OBJDIR)/strxfrm.o: std/9899-1990/string/strxfrm.c $(INCDIR)/string.h
-@mkdir -p $(OBJDIR)
$(CC) $(CFLAGS) -c std/9899-1990/string/strxfrm.c -o $@