summaryrefslogtreecommitdiffstats
path: root/src/util/Makefile.in
blob: 56ae9233f310195a8c7aa231e45a08d0fde23412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CFLAGS = $(CCOPTS)
LDFLAGS = -g

editsh = sed -e 's,@''ARADD''@,$(ARADD),g' -e 's,@''ARCHIVE''@,$(ARCHIVE),g'

all:: libupdate

libupdate: $(srcdir)/libupdate.sh
	rm -f $@ $@.tmp
	$(editsh) $(srcdir)/libupdate.sh > $@.tmp && chmod +x $@.tmp && mv $@.tmp $@

clean::
	$(RM) libupdate
	
install::
	@echo nothing to install in util