f79cc8a353
Instead of having everything in the root directory, split them in seperate directories (appliances, scripts, & configs). This makes things a little tidier. Also added a now Makefile target, appliance-list, that prints a list of the available appliances. The split directory change made this easier.
14 lines
265 B
Makefile
14 lines
265 B
Makefile
xdm_files = $(wildcard xdm/*)
|
|
|
|
preinstall:
|
|
|
|
postinstall: xdm.start $(xdm_files)
|
|
cp $(xdm_files) "$(CHROOT)"/etc/X11/xdm
|
|
echo "XSESSION=Xfce4" > "$(CHROOT)"/etc/env.d/99local
|
|
chroot "$(CHROOT)" env-update
|
|
cp xdm.start "$(CHROOT)/etc/local.d/xdm.start"
|
|
|
|
clean:
|
|
|
|
|