Skip to content
Permalink
f082e2a51d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 13 lines (9 sloc) 242 Bytes
HEADERS = simulator.h
default: simulator
simulator.o: simulator.c $(HEADERS)
gcc -c simulator.c -o simulator.o -std=c99
simulator: simulator.o
gcc simulator.o -o simulator -std=c99
clean:
-rm -f simulator.o simulator
-rm -f *out *txt