diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,9 +1,11 @@ include config.mk +CC = musl-gcc OBJ = sinit.o BIN = sinit +CFLAGS = $(shell pkg-config --cflags libevdev) -Os -all: $(BIN) +all: $(BIN) poweroff reboot $(BIN): $(OBJ) $(CC) $(LDFLAGS) -o $@ $(OBJ) $(LDLIBS) |