Initial revision

CVS patchset: 349
CVS date: 1996/02/20 04:47:25
This commit is contained in:
marc 1996-02-20 04:47:25 +00:00
parent 09ba912bd2
commit 019c209d1a
1 changed files with 23 additions and 0 deletions

23
tools/Makefile.in Normal file
View File

@ -0,0 +1,23 @@
### These are variables meant to be exported
PROGS = rpmlead rpmheader rpmarchive rpmsignature rpmchecksig
ifeq (.depend,$(wildcard .depend))
TARGET=everything
else
TARGET=depend everything
endif
all: $(TARGET)
everything: $(PROGS)
clean:
rm -f *.a *.o core *~ $(PROGS)
depend:
$(CPP) $(CFLAGS) -M *.c > .depend
ifeq (.depend,$(wildcard .depend))
include .depend
endif