Makefile 277 B

1234567891011121314
  1. # The pack_cis tool from cis-tools
  2. # <http://git.kernel.org/?p=utils/cis-tools/cis-tools.git>.
  3. PACK_CIS = ../cis-tools/pack_cis
  4. CIS_SRC := $(wildcard src/*.cis)
  5. CIS_BIN := $(notdir $(CIS_SRC))
  6. all: $(CIS_BIN)
  7. %.cis: src/%.cis
  8. $(PACK_CIS) -o $@ $<
  9. clean:
  10. rm -f $(CIS_BIN)