diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2019-10-01 15:00:31 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-10-01 15:00:31 +0100 |
commit | 610f1982ef62e9596df64839414cb1199a3a64b6 (patch) | |
tree | f1a9997a237d57fe41dc2f73b779b5366a795f50 | |
parent | f9707808efa41ccbca17720a32a665bcef638573 (diff) | |
download | abuild-610f1982ef62e9596df64839414cb1199a3a64b6.tar.gz abuild-610f1982ef62e9596df64839414cb1199a3a64b6.tar.bz2 abuild-610f1982ef62e9596df64839414cb1199a3a64b6.tar.xz abuild-610f1982ef62e9596df64839414cb1199a3a64b6.zip |
Makefile: clean *.o files
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,7 +69,7 @@ P=$(PACKAGE)-$(VERSION) all: $(USR_BIN_FILES) functions.sh clean: - @rm -f $(USR_BIN_FILES) functions.sh + @rm -f $(USR_BIN_FILES) *.o functions.sh %.o: %.c $(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS-$@) -o $@ -c $< |