mirror of
https://github.com/eddyem/eddys_snippets.git
synced 2025-12-06 18:55:16 +03:00
10 lines
184 B
Makefile
10 lines
184 B
Makefile
CC = gcc
|
|
LDFLAGS =
|
|
DEFINES = -DSTANDALONE -DEBUG
|
|
CFLAGS = -Wall -Werror
|
|
|
|
all : fifo_lifo bidirectional_list B-trees simple_list
|
|
|
|
%: %.c
|
|
$(CC) $(LDFLAGS) $(CFLAGS) $(DEFINES) $< -o $@
|