Initial revision
CVS patchset: 349 CVS date: 1996/02/20 04:47:25
This commit is contained in:
parent
09ba912bd2
commit
019c209d1a
|
@ -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
|
Loading…
Reference in New Issue