You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
361 B
Makefile
24 lines
361 B
Makefile
#
|
|
# Copyright (c) 2015-2018 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
SRCS = fsync.c
|
|
OBJS = $(SRCS:.c=.o)
|
|
LDLIBS = -L.
|
|
INCLUDES = -I.
|
|
CCFLAGS = -g -O2 -Wall -Wextra -Werror
|
|
|
|
all: build
|
|
|
|
.c.o:
|
|
$(CC) $(INCLUDES) $(CCFLAGS) $(EXTRACCFLAGS) -c $< -o $@
|
|
|
|
build: $(OBJS)
|
|
$(CC) $(OBJS) $(LDLIBS) -o fsync
|
|
|
|
clean:
|
|
@rm -v -f $(OBJS) fsync
|
|
|