aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorYves Duret <yduret@mandriva.com>2001-08-30 14:05:26 +0000
committerYves Duret <yduret@mandriva.com>2001-08-30 14:05:26 +0000
commitba01e1e135b47b711dd5cd6c4294f2531aa0e45f (patch)
tree5e38bbf4567937832494df56912af99dea035531 /Makefile.in
parentd9efcdea23d47d81c02f6bbf0e0e79cc59975a99 (diff)
downloadtransfugdrake-ba01e1e135b47b711dd5cd6c4294f2531aa0e45f.tar
transfugdrake-ba01e1e135b47b711dd5cd6c4294f2531aa0e45f.tar.gz
transfugdrake-ba01e1e135b47b711dd5cd6c4294f2531aa0e45f.tar.bz2
transfugdrake-ba01e1e135b47b711dd5cd6c4294f2531aa0e45f.tar.xz
transfugdrake-ba01e1e135b47b711dd5cd6c4294f2531aa0e45f.zip
stolen from hexedit
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in46
1 files changed, 46 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
new file mode 100644
index 0000000..41297aa
--- /dev/null
+++ b/Makefile.in
@@ -0,0 +1,46 @@
+# Makefile for hexedit
+
+PRODUCT = @PRODUCT@
+VERSION = @VERSION@
+
+SHELL = /bin/sh
+
+CC = @CC@
+CFLAGS = @CFLAGS@
+
+LDFLAGS = @LDFLAGS@
+LIBS = @LIBS@
+DEFS = @DEFS@
+INSTALL = @INSTALL@
+
+# Installation directories
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+mandir = @mandir@
+bindir = @bindir@
+
+INCL = @INCL@
+SRCS = @SRCS@
+OBJS = $(SRCS:.c=.o)
+
+.SUFFIXES: .c .o
+
+.c.o:
+ $(CC) $(DEFS) $(CFLAGS) -c $<
+
+all: $(PRODUCT)
+
+$(PRODUCT): $(OBJS)
+ $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
+
+clean:
+ rm -f *~ *.o core config.cache config.status config.log $(PRODUCT)
+
+distclean: clean
+ rm -f Makefile config.h
+
+install: $(PRODUCT)
+ $(INSTALL) -d -m 755 $(bindir)
+ $(INSTALL) -s -m 755 $(PRODUCT) $(bindir)
+ $(INSTALL) -d -m 755 $(mandir)/man1
+ $(INSTALL) -m 644 $(PRODUCT).1 $(mandir)/man1