1
0
mirror of https://github.com/krislamo/knrc.git synced 2025-02-22 03:55:51 +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 00:37:32 -04:00
$(OBJS):
2021-11-23 20:48:37 -05:00
$(CC) -o ./$@ $(patsubst bin/%,%.c,$@) -ansi
2021-11-03 01:20:54 -04:00
clean:
$(RM) ./bin/*