diff options
author | Calvin Morrison <calvin@fastmailteam.com> | 2022-08-02 11:07:27 -0400 |
---|---|---|
committer | Calvin Morrison <calvin@fastmailteam.com> | 2022-08-02 11:07:27 -0400 |
commit | 77821e30d15504aa91595c5160e376f5c87a8bde (patch) | |
tree | 13892a8af9ad88b367dc75211c880e74e08f3871 /Makefile | |
parent | 7ad5094f2300cc0421f02923e074587fde558d7d (diff) |
fix Make clean
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ ${OBJ}: config.mk moc_x11: moc_x11.c moc_library.c @echo ${CC} -Wall moc_x11.c moc_library.c -lpthread -lX11 -o moc_x11 - @${CC} -Wall moc_x11.c moc_library.c -lpthread -lX11 -o moc_x11 + @${CC} -Wall moc_x11.c moc_library.c -lpthread -lX11 -o moc_x11 -ggdb mocicon: ${OBJ} @echo CC -o $@ @@ -30,7 +30,7 @@ mocicon: ${OBJ} clean: @echo cleaning - @rm -f mocicon moc_x11 ${OBJ} mocicon-${VERSION}.tar.gz + @rm -f mocicon moc_x11 *.o mocicon-${VERSION}.tar.gz dist: clean @echo creating dist tarball |