CC = @CC@ CP = @CP@ CUT = @CUT@ GREP = @GREP@ LN = @LN_S@ MKDIR = @MKDIR@ RM = @RM@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ top_srcdir = @top_srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ libdir = @libdir@ includedir = @includedir@ sysconfdir = @sysconfdir@ localstatedir = @localstatedir@ datarootdir = @datarootdir@ datadir = @datadir@ localedir = @localedir@ SR1 = tgatool.c SR1 += ../bind_redtools.c SR1 += ../color.c ../conf.c ../cpuid.c ../cpuid_op.c ../endians.c ../envs.c SR1 += ../files.c ../image.c ../locks.c ../maths.c ../messages.c ../node.c SR1 += ../proc.c ../ribbon.c ../sighand.c ../threads.c ../timer.c SR1 += ../../conf_app.c SR2 = widgettool.c SR2 += ../bind_redtools.c SR2 += ../color.c ../conf.c ../cpuid.c ../cpuid_op.c ../endians.c ../envs.c SR2 += ../files.c ../image.c ../locks.c ../maths.c ../messages.c ../node.c SR2 += ../proc.c ../ribbon.c ../sighand.c ../threads.c ../timer.c SR2 += ../../conf_app.c SR3 = remotetool.c remotetool_cmdline.c remotetool_conf.c SR3 += ../bind_redtools.c SR3 += ../cpuid.c ../cpuid_op.c ../endians.c ../envs.c ../locks.c SR3 += ../messages.c ../node.c ../files.c ../proc.c ../ribbon.c ../sighand.c SR3 += ../threads.c ../timer.c DE1 = Makefile DE1 += tgatool.h DE1 += ../bind_redtools.h DE1 += ../config.h ../declarations.h ../pixel.h ../structures.h DE1 += ../color.h ../conf.h ../cpuid.h ../cpuid_op.h ../endians.h ../envs.h DE1 += ../files.h ../image.h ../locks.h ../maths.h ../messages.h ../node.h DE1 += ../proc.h ../ribbon.h ../sighand.h ../threads.h ../timer.h DE1 += ../../conf_app.h DE2 = Makefile DE2 += widgettool.h DE2 += ../bind_redtools.h DE2 += ../config.h ../declarations.h ../pixel.h ../structures.h DE2 += ../color.h ../conf.h ../cpuid.h ../cpuid_op.h ../endians.h ../envs.h DE2 += ../files.h ../image.h ../locks.h ../maths.h ../messages.h ../node.h DE2 += ../proc.h ../ribbon.h ../sighand.h ../threads.h ../timer.h DE2 += ../widget_shr.h DE2 += ../../conf_app.h DE3 = Makefile DE3 += remotetool.h remotetool_cmdline.h remotetool_conf.h DE3 += ../bind_redtools.h DE3 += ../config.h ../declarations.h ../structures.h DE3 += ../cpuid.h ../cpuid_op.h ../endians.h ../envs.h ../locks.h DE3 += ../messages.h ../node.h ../files.h ../proc.h ../ribbon.h ../sighand.h DE3 += ../threads.h ../timer.h INC = @E_FLAGS@ @DEFS@ INC += @GNUTLS_CFLAGS@ @OPENSSL_CFLAGS@ INC += -DBINDIR=\"$(bindir)\" -DETCDIR=\"$(sysconfdir)\" -DINCDIR=\"$(includedir)\" -DLIBDIR=\"$(libdir)\" -DSHRDIR=\"$(datadir)\" INC += -DLOCALEDIR=\"$(localedir)\" LIB = @LDFLAGS@ LNK = @GNUTLS_LIBS@ @OPENSSL_LIBS@ LNK += @LIBS@ OB1 = $(SR1:.c=.@OBJEXT@) OB2 = $(SR2:.c=.@OBJEXT@) OB3 = $(SR3:.c=.@OBJEXT@) OU1 = tgatool OU2 = widgettool OU3 = remotetool .SUFFIXES = .c .c.@OBJEXT@: $(CC) $(INC) -o $@ $< $(OU1): $(OB1) $(CC) $(LIB) -o $(OU1) $(OB1) $(LNK) $(OU2): $(OB2) $(CC) $(LIB) -o $(OU2) $(OB2) $(LNK) $(OU3): $(OB3) $(CC) $(LIB) -o $(OU3) $(OB3) $(LNK) $(OB1): $(DE1) $(OB2): $(DE2) $(OB3): $(DE3) .PHONY: clean install uninstall all: tgatool widgettool remotetool clean: @-$(RM) -f *.@OBJEXT@ $(OU1) $(OU2) $(OU3) install: @echo "Installing these trinkets is not supported or needed." uninstall: @echo "Uninstalling these trinkets is not supported or needed."