From: Roland McGrath Date: Mon, 30 Dec 2002 00:51:23 +0000 (+0000) Subject: 2002-12-26 Roland McGrath X-Git-Tag: v4.5.18~921 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab708516461099b4a6fbd07130ab5c6110106a21;p=strace 2002-12-26 Roland McGrath * linux/Makefile.am: New file. * linux/Makefile.in: File removed. * freebsd/Makefile.am: New file. * freebsd/i386/Makefile.am: New file. * freebsd/i386/Makefile.in: File removed. 2002-12-22 Roland McGrath * linux/Makefile.in (ioctldefs.h ioctls.h): Use $(SHELL) instead of sh, and use $(srcdir) to find the script. * linux/powerpc/Makefile.in (ioctlent.raw): Find ioctlent.sh in ../. (ioctlsort.o): Use ../ioctlsort.c, not ../../ioctlsort.c. * linux/x86_64/Makefile.in (headers): Renamed to all. * linux/alpha/Makefile.in: Add empty install target. * linux/x86_64/Makefile.in: Likewise. * linux/powerpc/Makefile.in: Likewise. * linux/Makefile.in: Likewise. --- diff --git a/linux/Makefile.in b/linux/Makefile.in deleted file mode 100644 index daf48f64..00000000 --- a/linux/Makefile.in +++ /dev/null @@ -1,55 +0,0 @@ -# -# $Id$ -# - -srcdir = @srcdir@ -VPATH = @srcdir@ - -CC = @CC@ -CPP = @CPP@ -SHELL = /bin/sh - -DEFS = @DEFS@ -LDLIBS = @LIBS@ - -CFLAGS = -g -LDFLAGS = -g -WARNFLAGS = @WARNFLAGS@ - -CPPFLAGS = -INCLUDES = -I. -I.. -I$(srcdir) - -includedir = @includedir@ - -all: ioctlent.h errnoent.h signalent.h syscallent.h - -ioctlent.h: ioctlsort - ./ioctlsort >$@ - -ioctlsort: ioctlsort.o - $(CC) $(LDFLAGS) ioctlsort.o -o ioctlsort - -ioctlsort.o: ioctlsort.c ioctldefs.h ioctls.h - $(CC) $(WARNFLAGS) $(DEFS) $(CPPFLAGS) $(INCLUDES) $(CFLAGS) -c $< - -ioctldefs.h ioctls.h: ioctlent.sh - sh ioctlent.sh - -errnoent.h: ../errnoent.sh $(includedir)/linux/errno.h - $(SHELL) $(srcdir)/../errnoent.sh $(includedir)/*/errno.h >$@ - -signalent.h: ../signalent.sh $(includedir)/linux/signal.h - $(SHELL) $(srcdir)/../signalent.sh $(includedir)/*/signal.h >$@ - -#syscallent.h: ../syscallent.sh $(includedir)/sys/syscall.h -syscallent.h: - $(SHELL) $(srcdir)/../syscallent.sh $(includedir)/sys/syscall.h >$@ - -clean: - rm -f ioctlent.c *.raw *.tmp *.o ioctlsort - -distclean: clean - rm -f Makefile - -maintainer-clean: distclean - rm -f ioctlent.h errnoent.h signalent.h