1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
From: "erik@debian.org" <erik@debian.org>
Date: Tue, 28 Jan 2025 03:09:14 +0100
Subject: Makefile clean target fix
---
Makefile.in | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/Makefile.in b/Makefile.in
index a43d091..13f5df8 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -34,14 +34,13 @@ MANDIR = $(DESTDIR)${prefix}/share/man
SHELL = /bin/sh
-PROGS = aggregate aggregate-ios
+PROGS = aggregate
OBJS = aggregate.o
all: $(PROGS)
clean:
- xargs rm -f <.cvsignore
- rm -f *.o
+ rm -f $(PROGS) $(OBJS)
install: $(PROGS)
mkdir -p $(PREFIX)/bin/
|