Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Merge branch 'devel'
[palacios.git] / kitten / init / Makefile
1 #
2 # Makefile for the LWK.
3 #
4
5 obj-y                           := main.o version.o
6
7 # files to be removed upon make clean
8 clean-files := ../include/lwk/compile.h
9
10 # dependencies on generated files need to be listed explicitly
11
12 $(obj)/version.o: include/lwk/compile.h
13
14
15 # compile.h changes depending on hostname, generation number, etc,
16 # so we regenerate it always.
17 # mkcompile_h will make sure to only update the
18 # actual file if its content has changed.
19
20 include/lwk/compile.h: FORCE
21         @echo '  CHK     $@'
22         $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkcompile_h $@ \
23         "$(UTS_MACHINE)" "$(CC) $(CFLAGS)"