diff -Nur GMsrch-1.4/Makefile.am GMsrch-1.4.0/Makefile.am --- GMsrch-1.4/Makefile.am Thu Jan 1 09:00:00 1970 +++ GMsrch-1.4.0/Makefile.am Wed Sep 11 05:30:31 2002 @@ -0,0 +1,6 @@ +SUBDIRS = src + +EXTRA_DIST = \ + ReadMe-euc \ + UTsrch.shtml \ + autogen.sh diff -Nur GMsrch-1.4/autogen.sh GMsrch-1.4.0/autogen.sh --- GMsrch-1.4/autogen.sh Thu Jan 1 09:00:00 1970 +++ GMsrch-1.4.0/autogen.sh Wed Sep 11 05:30:06 2002 @@ -0,0 +1,6 @@ +#!/bin/sh +aclocal \ + && autoconf \ + && autoheader \ + && automake --add-missing --foreign --copy + diff -Nur GMsrch-1.4/configure.in GMsrch-1.4.0/configure.in --- GMsrch-1.4/configure.in Thu Jan 1 09:00:00 1970 +++ GMsrch-1.4.0/configure.in Wed Sep 11 05:14:47 2002 @@ -0,0 +1,34 @@ +dnl Process this file with autoconf to produce a configure script. +AC_INIT(src/GMsrch.c) +PACKAGE=GMsrch + +dnl version number +MAJOR_VERSION=1 +MINOR_VERSION=4 +MICRO_VERSION=0 +EXTRA_VERSION= +VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION + +AM_INIT_AUTOMAKE($PACKAGE, $VERSION) +AM_CONFIG_HEADER(config.h) + +dnl Checks for programs. +AC_PROG_CC + +dnl Checks for libraries. + +dnl Checks for header files. +AC_HEADER_STDC +AC_CHECK_HEADERS([unistd.h]) + +dnl Checks for typedefs, structures, and compiler characteristics. +AC_C_CONST + +dnl Checks for library functions. +AC_TYPE_SIGNAL +AC_CHECK_FUNCS([socket strstr]) + +AC_OUTPUT([ +Makefile +src/Makefile +]) diff -Nur GMsrch-1.4/src/Makefile GMsrch-1.4.0/src/Makefile --- GMsrch-1.4/src/Makefile Wed Sep 11 05:20:48 2002 +++ GMsrch-1.4.0/src/Makefile Thu Jan 1 09:00:00 1970 @@ -1,51 +0,0 @@ -PRGM = GMsrch -CC = gcc -MARCH = i686 - -SRC1 = GMsrch -SRC2 = other -SRC3 = ut -SRC4 = display_ut -SRC5 = hl -SRC6 = display_hl -SRC7 = q3 -SRC8 = display_q3 - -SRCS = $(SRC1).c $(SRC2).c $(SRC3).c $(SRC4).c $(SRC5).c $(SRC6).c $(SRC7).c $(SRC8).c -OBJ = $(SRC1).o $(SRC2).o $(SRC3).o $(SRC4).o $(SRC5).o $(SRC6).o $(SRC7).o $(SRC8).o - -#CFLAGS= -D DEBUG -D SDEBUG -g -Wall -#CFLAGS= -D DEBUG -g -Wall -CFLAGS= -O2 -march=$(MARCH) -Wall - - -$(PRGM): $(OBJ) - $(CC) -o $@ $(OBJ) - -$(SRC1).o: $(SRC1).c $(SRC1).h - $(CC) $(CFLAGS) -c $(SRC1).c -$(SRC2).o: $(SRC2).c $(SRC2).h - $(CC) $(CFLAGS) -c $(SRC2).c -$(SRC3).o: $(SRC3).c $(SRC3).h - $(CC) $(CFLAGS) -c $(SRC3).c -$(SRC4).o: $(SRC4).c $(SRC4).h - $(CC) $(CFLAGS) -c $(SRC4).c -$(SRC5).o: $(SRC5).c $(SRC5).h - $(CC) $(CFLAGS) -c $(SRC5).c -$(SRC6).o: $(SRC6).c $(SRC6).h - $(CC) $(CFLAGS) -c $(SRC6).c -$(SRC7).o: $(SRC7).c $(SRC7).h - $(CC) $(CFLAGS) -c $(SRC7).c -$(SRC8).o: $(SRC8).c $(SRC8).h - $(CC) $(CFLAGS) -c $(SRC8).c - -install: $(PRGM) - install $(PRGM) /usr/local/bin/$(PRGM) - - -uninstall: - rm -rf /usr/local/bin/$(PRGM) - - -clean: - rm -rf $(PRGM) core $(OBJ) diff -Nur GMsrch-1.4/src/Makefile.am GMsrch-1.4.0/src/Makefile.am --- GMsrch-1.4/src/Makefile.am Thu Jan 1 09:00:00 1970 +++ GMsrch-1.4.0/src/Makefile.am Wed Sep 11 05:22:01 2002 @@ -0,0 +1,12 @@ +bin_PROGRAMS = GMsrch + +GMsrch_SOURCES = \ + GMsrch.c GMsrch.h \ + debug.h \ + display_hl.c display_hl.h \ + display_q3.c display_q3.h \ + display_ut.c display_ut.h \ + hl.c hl.h \ + other.c other.h \ + q3.c q3.h \ + ut.c ut.h