mirror of
https://github.com/dynup/kpatch
synced 2024-12-27 15:52:02 +00:00
62de820aab
- setup the makefiles to support "make" and "make install", which builds the kpatch-build tools and installs everything in /usr/local. - update kpatch-build to support new paths - add "kpatch build" wrapper around kpatch-build
12 lines
197 B
Makefile
12 lines
197 B
Makefile
include ../Makefile.inc
|
|
|
|
all:
|
|
|
|
install:
|
|
$(INSTALL) -d $(DATADIR)/core
|
|
$(INSTALL) -m 644 core/* $(DATADIR)/core
|
|
$(INSTALL) -d $(DATADIR)/patch
|
|
$(INSTALL) -m 644 patch/* $(DATADIR)/patch
|
|
|
|
clean:
|