Skip to content
Snippets Groups Projects
Commit b70c60b7 authored by Jonas Höglund's avatar Jonas Höglund
Browse files

Fix compilation

parent 9e339362
No related branches found
No related tags found
No related merge requests found
dumpimage
*.o
.built
.built_check
.configured_*
.dep_files
.git_update
.prepared_*
...@@ -3,14 +3,14 @@ CFLAGS += -Wall -Werror=implicit-function-declaration ...@@ -3,14 +3,14 @@ CFLAGS += -Wall -Werror=implicit-function-declaration
CFLAGS += -Wextra -std=gnu99 CFLAGS += -Wextra -std=gnu99
%.o: %.c %.o: %.c
$(CC) -c $(CFLAGS) $(INCLUDE_PATHS) -o $@ $< $(CC) -c $(CFLAGS) $(INCLUDE_PATHS) -o $@ $<
LIBS += -lfdt LIBS += -lfdt
dumpimage: dumpimage.o dumpimage: dumpimage.o
$(CC) $(CFLAGS) $(INCLUDE_PATHS) -o $@ $^ $(LIBS) $(CC) $(CFLAGS) $(INCLUDE_PATHS) -o $@ $^ $(LIBS)
clean: clean:
rm -rf *.o rm -rf *.o
rm -rf dumpimage rm -rf dumpimage
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment