Skip to content
Snippets Groups Projects
Commit 87711ebb authored by Seungsu Baek's avatar Seungsu Baek
Browse files
parents cbdbb87f f046625c
Branches
No related tags found
No related merge requests found
Makefile 0 → 100644
SRC := test.c fx_s2308_double.c
OBJS := $(SRC:.c=.o)
CC := gcc
CFLAGS = -c -Wall -g
fx_s2308_double: $(OBJS)
$(CC) -o $@ $^
test.o: test.c fx_s2308_double.h
$(CC) $(CFLAGS) test.c
fx_s2308_double.o: fx_s2308_double.c fx_s2308_double.h
$(CC) $(CFLAGS) fx_s2308_double.c
clean:
-- rm $(OBJS)
rm fx_s2308_double
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment