You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
461 B
31 lines
461 B
# File: Makefile
|
|
# Author: M. P. Hayes, UCECE
|
|
# Date: 11 Sep 2010
|
|
# Descr: Makefile for @PROJECT@
|
|
|
|
CC = gcc
|
|
CFLAGS = -Wall -Wstrict-prototypes -Wextra -g @INCLUDES@
|
|
|
|
DEL = rm
|
|
|
|
|
|
# Default target.
|
|
all: @PROJECT@
|
|
|
|
|
|
# Compile: create object files from C source files.
|
|
@CCRULES@
|
|
|
|
|
|
# Link: create executable file from object files.
|
|
@PROJECT@: @OBJ@
|
|
$(CC) $(CFLAGS) $^ -o $@ -lrt
|
|
|
|
|
|
# Clean: delete derived files.
|
|
.PHONY: clean
|
|
clean:
|
|
-$(DEL) @PROJECT@ @OBJ@
|
|
|
|
|