summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2013-07-09 13:34:54 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2013-07-10 07:14:32 +0000
commit5a53fbc9b7392dd379011c2550f94fc898c55496 (patch)
tree850f5e3f8668a262f9eb2b47ce61750abd303bd0 /Makefile
parentdb00867cebac76127235cf6472c25cdda21d4581 (diff)
downloadabuild-5a53fbc9b7392dd379011c2550f94fc898c55496.tar.bz2
abuild-5a53fbc9b7392dd379011c2550f94fc898c55496.tar.xz
build: make sure functions.sh gets generated at build time
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 23a587c..ff5e88d 100644
--- a/Makefile
+++ b/Makefile
@@ -61,10 +61,10 @@ OBJS-abuild-sudo = abuild-sudo.o
P=$(PACKAGE)-$(VERSION)
-all: $(USR_BIN_FILES)
+all: $(USR_BIN_FILES) functions.sh
clean:
- @rm -f $(USR_BIN_FILES)
+ @rm -f $(USR_BIN_FILES) functions.sh
%.o: %.c
$(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS-$@) -o $@ -c $<