File: makefile.icc

package info (click to toggle)
multitail 5.2.9-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 824 kB
  • sloc: ansic: 14,404; makefile: 96; sh: 51; perl: 25
file content (18 lines) | stat: -rw-r--r-- 526 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
include version

CONFIG_FILE=$(DESTDIR)/etc/multitail.conf

CC=icc
DEBUG=-g # -D_DEBUG
LDFLAGS=-lpanel -lncurses -lutil -lm $(DEBUG)
CFLAGS+=-D$(shell uname) -O2 -DVERSION=\"$(VERSION)\" $(DEBUG) -DCONFIG_FILE=\"$(CONFIG_FILE)\"

OBJS=utils.o mt.o error.o my_pty.o term.o scrollback.o help.o mem.o cv.o selbox.o stripstring.o color.o misc.o ui.o exec.o diff.o config.o cmdline.o globals.o history.o

all: multitail

multitail: $(OBJS)
	$(CC) $(OBJS) $(LDFLAGS) -o multitail

clean:
	rm -f $(OBJS) multitail core gmon.out *.da