Skip to content
Snippets Groups Projects
Commit 279875f0 authored by dawid.dymarczy's avatar dawid.dymarczy
Browse files

changes of makefile2

parent e39dcb06
No related branches found
No related tags found
No related merge requests found
CC:=arm-linux-gcc
CC:=
CFLAGS:=-g -std=gnu11
LIBS:=
......@@ -15,12 +15,12 @@ all: $(BIN) $(GOBIN)
$(BIN): $(OBJS)
$(CC) $(CFLAGS) -o $@ $^ $(LIBS)
arm-linux-gcc $(CFLAGS) -o $@ $^ $(LIBS)
$(GOBIN):
$(GOCMD) -o $(GOBIN)
%.o: %.c
$(CC) -c $< -o $@ $(CFLAGS)
arm-linux-gcc -c $< -o $@ $(CFLAGS)
clean:
rm -f $(OBJS) $(BIN) $(DEPS) $(IMG_DST) $(GOBIN)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment