Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
duncantl committed May 17, 2019
1 parent 87e8b77 commit f17900d
Show file tree
Hide file tree
Showing 10 changed files with 563 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CompileSteps/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

%.E: %.c
$(CC) -E -o $@ $(CPPFLAGS) $<

%.o: %.c
$(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $<


sm: sm.o simpleMath.o
$(CC) -o $@ simpleMath.o sm.o -lm
Loading

0 comments on commit f17900d

Please sign in to comment.