1
0
mirror of https://github.com/krislamo/knrc.git synced 2025-02-22 03:55:51 +00:00
knrc/Makefile

11 lines
143 B
Makefile
Raw Normal View History

CC = gcc
OBJS = $(patsubst %.c,bin/%,$(wildcard *.c))
all: $(OBJS)
2021-11-03 00:37:32 -04:00
$(OBJS):
$(CC) -o ./$@ $(patsubst bin/%,%.c,$@)
2021-11-03 01:20:54 -04:00
clean:
$(RM) ./bin/*