first commit
This commit is contained in:
16
CS4210/Project 1/makefile.win32
Normal file
16
CS4210/Project 1/makefile.win32
Normal file
@@ -0,0 +1,16 @@
|
||||
bindir = bin
|
||||
binname = runner.exe
|
||||
|
||||
srcdir = src
|
||||
opts = /O2
|
||||
#link = -lpthread
|
||||
compiler = cl
|
||||
|
||||
$(binname): $(srcdir)/main.c
|
||||
$(compiler) $(opts) /Fe $(binname) $(srcdir)/main.c
|
||||
|
||||
.PHONY : clean
|
||||
clean :
|
||||
rm $(bindir)/$(binname)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user