1
0
mirror of https://github.com/krislamo/knrc.git synced 2024-09-19 21:00:35 +00:00
knrc/Makefile

11 lines
149 B
Makefile
Raw Permalink Normal View History

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