|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: M T
Length: 1240 (0x4d8) Types: TextFile Names: »Makefile«
└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89 └─⟦2ef1b875f⟧ »./sed-1.06.tar.Z« └─⟦065473080⟧ └─⟦this⟧ »Makefile«
# Makefile for GNU SED, a batch editor. # Copyright (C) 1987, 1988, 1989 Free Software Foundation, Inc. # # This file is part of GNU SED. # # GNU SED is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 1, or (at your option) # any later version. # # GNU SED is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU SED; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. OBJS = sed.o regex.o glob.o SRC = README sed.c regex.c glob.c regex.h Makefile # on SysV systems, comment out the next line and comment out the one below it #CFLAGS = -g -DUSG -I. CFLAGS = -g -I. # if your machine doesn't have vfprintf() add -DNO_VFPRINTF to the above lines sed: $(OBJS) $(CC) $(LINK) -o sed $(OBJS) clean: rm -f sed $(OBJS) core butgs sed.tar.Z dist: sed.tar.Z sed.tar.Z: tar cvhzf sed.tar.Z $(SRC)