annotate udis86-1.4/udcli/Makefile.in @ 5:496dfd8f7342 default tip

added: -repeat option for "in", "ov" -run until a line option -run until a function option -break on a function start -n is an alias for ov
author marton@basel.hu
date Sun, 17 Apr 2011 11:05:31 +0200
parents 4a9dcbd9e54f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1 # Makefile
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
2 # udis86 - Cmd line interface.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
3 #
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
4
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
5 SHELL = @SHELL@
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
6 top_srcdir = @top_srcdir@
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
7 srcdir = @srcdir@
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
8 CC = @CC@
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
9 CFLAGS = @CFLAGS@ -Wall -O2
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
10 LIBS = @LIBS@
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
11 INSTALL = @INSTALL@
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
12 INSTALL_PROGRAM = @INSTALL_PROGRAM@
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
13 INSTALL_DATA = @INSTALL_DATA@
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
14 prefix = @prefix@
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
15 exec_prefix = ${prefix}
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
16 bindir = $(exec_prefix)/bin
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
17 libdir = $(prefix)/lib
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
18 mandir = @mandir@
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
19 includedir = @includedir@
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
20 RM = rm
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
21
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
22
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
23 .SUFFIXES: .c .o
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
24 .c.o:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
25 $(CC) -c $(CFLAGS) -o $@ $<
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
26
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
27 OBJS = udcli.o ../libudis86/libudis86.a
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
28
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
29 udcli: $(OBJS)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
30 $(CC) $(CFLAGS) $(OBJS) -o udcli
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
31 install: udcli
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
32 $(INSTALL_PROGRAM) $(srcdir)/udcli $(INSTALLROOT)$(bindir)/udcli
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
33 uninstall:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
34 $(RM) -f $(INSTALLROOT)$(bindir)/udcli
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
35 clean:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
36 $(RM) -f core $(srcdir)/*.o $(srcdir)/udcli
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
37 distclean: clean
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
38 $(RM) -f udcli config.h Makefile *~