9 lines
77 B
Makefile
9 lines
77 B
Makefile
|
|
all: nprocs
|
|
|
|
nprocs: nprocs.c
|
|
$(CC) -o $@ $<
|
|
|
|
clean:
|
|
-rm -f *.o *~ nprocs
|