
Makes the Makefile easier to write and the output a little nicer. Inspired by a similar tool ;-)
11 lines
130 B
Makefile
11 lines
130 B
Makefile
xdm_files = $(wildcard xdm/*)
|
|
|
|
preinstall:
|
|
|
|
postinstall: $(xdm_files)
|
|
COPY xdm/* /etc/X11/xdm
|
|
RUN systemctl enable xdm
|
|
|
|
clean:
|
|
|