diff options
Diffstat (limited to 'apps/init/Makefile')
-rw-r--r-- | apps/init/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/init/Makefile b/apps/init/Makefile new file mode 100644 index 0000000..7dec3e8 --- /dev/null +++ b/apps/init/Makefile @@ -0,0 +1,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 $@ |