make and gcc
driver.c -> contains main
support.h -> contains many function prototypes including is_negative(double)
support.s -> contains the implementation of is_negative and others
I cant seem to figure out how to make this project, so that means I cant really work on the main part of it.
Can someone give an example of what would go in each file and how I would create a makefile for it? The idea is how do I call an assembly function in support.s from the main function in driver.c?
The project is to implement a dozen or so functions in assembly but he wants the driver in c so I have no idea.

