Skip to content

code-warrior/labs--fundamentals-of-computing-1--cs-114

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Labs for CS 114, Fundamentals of Computing I


This repo consists of ten labs associated with my section of CS 114, Fundamentals of Computing I, at The University of Hartford.


Working with Make

Included in every lab folder is a Makefile to build and run your programs. Each Makefile is configured to work with the first program of every lab.

You can modify it to work with the other programs once you’re done with the first. The only modification required is to change the value assigned to filename on line 1 of Makefile to the name of the file you will be working with, sans extension. For example, if you wanted to work with a file called Names.java, then you’d assign Names to filename, not Names.java.

Compiling Projects with Make

  1. Assuming make is installed on your system, open your command line interface, or CLI, and navigate to the lab’s folder.
  2. To compile then run your program, type make. Do this each time you want to compile then run your program.
  3. Afterwards, if you only want to run your program, type make run.
  4. Similarly, if you only want to compile but not run your program, then type make compile.
  5. To remove the .class file associated with your program, type make clean.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published