~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to Makefile

Merged db-devel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
ifeq ($(JS_BUILD), min)
178
178
        cat $^ | $(PY) -m lp.scripts.utilities.js.jsmin > $@
179
179
else
180
 
        for jsname in $^ ; do \
181
 
            echo "/* $$jsname */" >> $@ ;\
182
 
            cat $$jsname >> $@ ;\
183
 
        done
 
180
        awk 'FNR == 1 {print "/* " FILENAME " */"} {print}' $^ > $@
184
181
endif
185
182
 
186
183
jsbuild: $(PY) $(JS_OUT)