aboutsummaryrefslogtreecommitdiff
path: root/apps/init/Makefile
blob: 7dec3e8169a203933ea833b0465d618bea61bfe9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# MIT License, Copyright (c) 2021 Marvin Borner

OBJS = init.o

all: $(OBJS)
	@$(LD) -o $(BUILD)/apps/init $(LDFLAGS) $< -lc

clean:
	@$(RM) -f $(OBJS)

%.o: %.c
	@$(CC) -c $(CFLAGS) $< -o $@