kiwi-el8/tools/startshell/Makefile
Marcus Schäfer 09daca60c0
KIWI - appliance builder next generation
a rewrite of the current kiwi from https://github.com/openSUSE/kiwi
2015-12-05 16:17:10 +01:00

11 lines
151 B
Makefile

OBJ = startshell
CC = gcc -Wall -fpic -O2
all:${OBJ}
startshell: startshell.c
${CC} ${CFLAGS} startshell.c -o startshell
clean:
rm -f startshell