datalab assigned
This commit is contained in:
26
01_datalab/Makefile
Normal file
26
01_datalab/Makefile
Normal file
@@ -0,0 +1,26 @@
|
||||
#
|
||||
# Makefile that builds btest and other helper programs for CSE4009 data lab
|
||||
#
|
||||
CC = gcc
|
||||
CFLAGS = -O -Wall -m32
|
||||
LIBS = -lm
|
||||
|
||||
all: btest fshow ishow
|
||||
|
||||
btest: btest.c bits.c decl.c tests.c btest.h bits.h
|
||||
$(CC) $(CFLAGS) $(LIBS) -o btest bits.c btest.c decl.c tests.c
|
||||
|
||||
fshow: fshow.c
|
||||
$(CC) $(CFLAGS) -o fshow fshow.c
|
||||
|
||||
ishow: ishow.c
|
||||
$(CC) $(CFLAGS) -o ishow ishow.c
|
||||
|
||||
# Forces a recompile. Used by the driver program.
|
||||
btestexplicit:
|
||||
$(CC) $(CFLAGS) $(LIBS) -o btest bits.c btest.c decl.c tests.c
|
||||
|
||||
clean:
|
||||
rm -f *.o btest fshow ishow *~
|
||||
|
||||
|
||||
Reference in New Issue
Block a user