Files
yait/template.h
2025-11-05 20:23:26 -05:00

69 lines
2.2 KiB
C

/* DO NOT MODIFY THIS FILE! It was generated by t 1.0.1. */
#ifndef TEMPLATE_H
#define TEMPLATE_H
/*
* package (s)
*/
static const char templ_FLAT_MAKEFILE[] = "\
PROGRAM = %s\n\
CC = gcc\n\
CFLAGS = -O2 -Wall -Wstrict-prototypes -g\n\
DEFINES =\n\
LIBS =\n\
SRC = $(wildcard *.c)\n\
OBJ = $(SRC:.c=.o)\n\
V =\n\
ifeq ($(strip $(V)),)\n\
E = @echo\n\
Q = @\n\
else\n\
E = @\\#\n\
Q =\n\
endif\n\
export E Q\n\
$(PROGRAM): $(OBJ)\n\
$(E) \" LINK \" $@\n\
$(Q) $(CC) $(CFLAGS) $(DEFINES) -o $@ $^ $(LIBS)\n\
%.o: %.c\n\
$(E) \" CC \" $@\n\
$(Q) $(CC) $(CFLAGS) $(DEFINES) -c $<\n\
clean:\n\
$(E) \" CLEAN\"\n\
$(Q) rm -f $(PROGRAM) $(OBJ)";
/*
* author (s)
* package (s)
* package (s)
* description (s)
* year (d)
* package (s)
* author (s)
* package (s)
*/
static const char templ_README[] = "\
This is the README file for the %s %s distribution.\n\
%s %s\n\
Copyright (C) %d %s.\n\
Copying and distribution of this file, with or without modification,\n\
are permitted in any medium without royalty provided the copyright\n\
notice and this notice are preserved.\n\
See the files ./INSTALL* for building and installation instructions.\n\
Bug reports:\n\
Please include enough information for the maintainers to reproduce the\n\
problem. Generally speaking, that means:\n\
- the contents of any input files necessary to reproduce the bug\n\
and command line invocations of the program(s) involved (crucial!).\n\
- a description of the problem and any samples of the erroneous output.\n\
- the version number of the program(s) involved (use --version).\n\
- hardware, operating system, and compiler versions (uname -a).\n\
- unusual options you gave to configure, if any (see config.mak).\n\
- anything else that you think would be helpful.\n\
See README-dev for information on the development environment -- any\n\
interested parties are welcome. If you're a programmer and wish to\n\
contribute, this should get you started. If you're not a programmer,\n\
your help in writing test cases, checking documentation against the\n\
implementation, etc., would still be very much appreciated.\n\
%s %s is free software. See the file COPYING for copying conditions.";
#endif