~jsvoboda/helenos/dnsr

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Jiri Svoboda
  • Date: 2011-03-16 22:09:28 UTC
  • Revision ID: jiri@wiwaxia-20110316220928-lw4xl2hppe1zgl8c
Rename things 'dist' to 'release'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
CONFIG_MAKEFILE = Makefile.config
42
42
CONFIG_HEADER = config.h
43
43
 
44
 
.PHONY: all precheck cscope autotool config_auto config_default config distclean clean check distfile dist
 
44
.PHONY: all precheck cscope autotool config_auto config_default config distclean clean check releasefile release
45
45
 
46
46
all: $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER)
47
47
        cp -a $(COMMON_HEADER) $(COMMON_HEADER_PREV)
87
87
config: $(CONFIG_RULES)
88
88
        $(CONFIG) $<
89
89
 
90
 
# Distribution files
91
 
 
92
 
distfile: all
93
 
        $(MAKE) -C dist distfile
94
 
 
95
 
dist:
96
 
        $(MAKE) -C dist dist
 
90
# Release files
 
91
 
 
92
releasefile: all
 
93
        $(MAKE) -C release releasefile
 
94
 
 
95
release:
 
96
        $(MAKE) -C release release
97
97
 
98
98
# Cleaning
99
99