Files
ostep-code/cpu-api/Makefile
2018-08-15 12:01:26 -05:00

19 lines
174 B
Makefile

all: p1 p2 p3 p4
clean:
rm -f p1 p2 p3 p4
p1: p1.c
gcc -o p1 p1.c -Wall
p2: p2.c
gcc -o p2 p2.c -Wall
p3: p3.c
gcc -o p3 p3.c -Wall
p4: p4.c
gcc -o p4 p4.c -Wall