aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJuan Cespedes <cespedes@debian.org>1999-04-03 03:21:52 +0200
committerJuan Cespedes <cespedes@debian.org>1999-04-03 03:21:52 +0200
commite3eb9aa37086f16c0c8c2778dcd8020a39a92564 (patch)
tree7fa35424afa6429b758586ff07f4d8d48359dc72 /Makefile.in
parentd44c6b8b090b8b7aa9d971d9e0bfd848732a3071 (diff)
downloadltrace-e3eb9aa37086f16c0c8c2778dcd8020a39a92564.tar.gz
Version: 0.3.7
* Minor fixes * Added minor patch from Alex Buell <alex.buell@tahallah.demon.co.uk> to be able to compile under glibc 2.1 * Additions to config file from David Dyck <dcd@tc.fluke.com> * Clean-up Makefile a bit * Changed `LT_PT_*' with `ARGTYPE_*' * Display '\\' instead of '\' * Updated list of syscalls and signals to linux-2.2.5 * Compiled against glibc-2.1
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index 7a582d7..5f64062 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -2,13 +2,12 @@
# ltrace's Makefile.in
#
-##ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/)
OS := $(shell uname -s)
TOPDIR = $(shell pwd)
CC = @CC@
-CPPFLAGS = -I$(TOPDIR) -I$(TOPDIR)/sysdeps/$(OS) -I- @DEFS@ #-I$(TOPDIR)/sysdeps/$(ARCH)
+CPPFLAGS = -I$(TOPDIR) -I$(TOPDIR)/sysdeps/$(OS) -I- @DEFS@
CFLAGS = -Wall @CFLAGS@
LDFLAGS =
LIBS = @LIBS@
@@ -17,13 +16,14 @@ OBJ = ltrace.o options.o elf.o output.o read_config_file.o \
execute_program.o wait_for_something.o process_event.o \
display_args.o breakpoints.o proc.o demangle.o
-all: dummy
- $(MAKE) -C sysdeps/$(OS)
- $(MAKE) ltrace
+all: ltrace
ltrace: sysdeps/sysdep.o $(OBJ)
$(CC) $(LDFLAGS) $^ $(LIBS) -o $@
+sysdeps/sysdep.o: dummy
+ $(MAKE) -C sysdeps/$(OS)
+
clean:
$(MAKE) -C sysdeps/$(OS) clean
$(RM) ltrace $(OBJ)
@@ -45,6 +45,6 @@ install: ltrace
dummy:
-.PHONY: all clean distclean dist install
+.PHONY: all clean distclean dist install dummy
.EXPORT_ALL_VARIABLES: