diff options
author | June McEnroe <june@causal.agency> | 2022-01-19 20:49:26 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-01-19 20:49:26 -0500 |
commit | 344497630ac9ef2d46287cd574472ce369694076 (patch) | |
tree | 25d628a85126ec57e591627f4ffd4705a9bdebd8 /Makefile | |
parent | Remove README (diff) | |
download | wep-344497630ac9ef2d46287cd574472ce369694076.tar.gz wep-344497630ac9ef2d46287cd574472ce369694076.zip |
Replace build system with cmake
Diffstat (limited to '')
-rw-r--r-- | Makefile | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 488245d..0000000 --- a/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -CFLAGS += -std=c99 -Wall -Wextra -Wpedantic - -include config.mk - -BINS = dump example - -all: ${BINS} - -${BINS}: cards.o - -.o: - ${CC} ${LDFLAGS} $< cards.o ${LDLIBS} -o $@ - -cards.o dump.o example.o: cards.h - -clean: - rm -f ${BINS} *.o *.bmp |