18 lines
419 B
Makefile
18 lines
419 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
bin_PROGRAMS = dtappgather
|
|
|
|
dtappgather_CXXFLAGS = -I../libCliSrv $(DT_INCDIR)
|
|
|
|
dtappgather_LDADD = ../libCliSrv/libCliSrv.a $(DTCLIENTLIBS) $(XTOOLLIB)
|
|
|
|
if SOLARIS
|
|
dtappgather_LDADD += -ldl -lintl
|
|
endif
|
|
|
|
dtappgather_SOURCES = Options.C dtappgather.C dtappgather.h Options.h
|
|
|
|
install-exec-hook:
|
|
chown root $(DESTDIR)$(bindir)/dtappgather
|
|
chmod 4755 $(DESTDIR)$(bindir)/dtappgather
|