forked from rkarra1/datastructs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
31 lines (24 loc) · 763 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
$(info Set these environment variables and delete this message)
CFLAGS=
LDFLAGS=
LDLIBS=
ARFLAGS=
all: libdatastructs.a test
%.o : %.c
$(error You must implement a rule to make \
object files from source files)
libdatastructs.a:
$(error You must implement the libdatastructs.a rule and delete this message)
main:
$(info You may implement a demo in main.c and delete this message)
pass;
test:
$(error You must implement the test rule and delete this message)
# Removes any files/directories
# created using student files as prerequisites
.PHONY: clean
clean:
$(error You must implement the clean rule and delete this message)
# Secret grader Makefile additions ;)
# Just kidding! It's not secret, but you can safely ignore it.
include grading.make