-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
28 lines (18 loc) · 882 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
#Shireen Bahadur
#CS 3377.502
CXX = g++
CXXFLAGS = -Wno-write-strings
CPPFLAGS = -Wall -g -I /scratch/perkins/include
LDFLAGS = -L /scratch/perkins/lib
LDLIBS = -lcdk -lcurses
#
# PROJECTNAME is a descriptive name used for the backup target
# This should not contain spaces or special characters
EXECFILE = cdkprog6
OBJS = prog6.o
all: $(EXECFILE)
clean:
rm -f $(OBJS) $(EXECFILE) *.P *~ \#*
$(EXECFILE): $(OBJS)
$(CXX) $(CXXFLAGS) -o $@ $(OBJS) $(LDFLAGS) $(LDLIBS)