Configs and makefile fixes
This commit is contained in:
parent
9f1f82ad43
commit
152e31b38d
8
Assignment8/.idea/runConfigurations/all.xml
Normal file
8
Assignment8/.idea/runConfigurations/all.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<component name="ProjectRunConfigurationManager">
|
||||
<configuration default="false" name="all" type="MAKEFILE_TARGET_RUN_CONFIGURATION" factoryName="Makefile">
|
||||
<makefile filename="C:\Users\Isaac\Documents\CS3413\Assignment8\makefile" target="all" workingDirectory="" arguments="">
|
||||
<envs />
|
||||
</makefile>
|
||||
<method v="2" />
|
||||
</configuration>
|
||||
</component>
|
8
Assignment8/.idea/runConfigurations/build.xml
Normal file
8
Assignment8/.idea/runConfigurations/build.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<component name="ProjectRunConfigurationManager">
|
||||
<configuration default="false" name="build" type="MAKEFILE_TARGET_RUN_CONFIGURATION" factoryName="Makefile">
|
||||
<makefile filename="C:\Users\Isaac\Documents\CS3413\Assignment8\makefile" target="build" workingDirectory="" arguments="">
|
||||
<envs />
|
||||
</makefile>
|
||||
<method v="2" />
|
||||
</configuration>
|
||||
</component>
|
8
Assignment8/.idea/runConfigurations/clean.xml
Normal file
8
Assignment8/.idea/runConfigurations/clean.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<component name="ProjectRunConfigurationManager">
|
||||
<configuration default="false" name="clean" type="MAKEFILE_TARGET_RUN_CONFIGURATION" factoryName="Makefile">
|
||||
<makefile filename="C:\Users\Isaac\Documents\CS3413\Assignment8\makefile" target="clean" workingDirectory="" arguments="">
|
||||
<envs />
|
||||
</makefile>
|
||||
<method v="2" />
|
||||
</configuration>
|
||||
</component>
|
8
Assignment8/.idea/runConfigurations/test.xml
Normal file
8
Assignment8/.idea/runConfigurations/test.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<component name="ProjectRunConfigurationManager">
|
||||
<configuration default="false" name="test" type="MAKEFILE_TARGET_RUN_CONFIGURATION" factoryName="Makefile">
|
||||
<makefile filename="C:\Users\Isaac\Documents\CS3413\Assignment8\makefile" target="test" workingDirectory="" arguments="">
|
||||
<envs />
|
||||
</makefile>
|
||||
<method v="2" />
|
||||
</configuration>
|
||||
</component>
|
@ -1,9 +1,9 @@
|
||||
.PHONY: clean build test all
|
||||
|
||||
clean:
|
||||
mkdir -p student_out
|
||||
rm student_out/*
|
||||
rm a.out
|
||||
mkdir -p ./student_out
|
||||
rm -f ./student_out/*
|
||||
rm -f ./a.out
|
||||
|
||||
build:
|
||||
gcc -g -O0 ./code/*.c -lm
|
||||
|
Loading…
Reference in New Issue
Block a user