Skip to content
Snippets Groups Projects
Commit e3866047 authored by Esko Pakarinen's avatar Esko Pakarinen
Browse files

Added a makefile to build the project

parent 10b0c3dc
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
default: centr
buf.o: buf.c
gcc -c buf.c -o buf.o
pages.o: pages.asm
gcc -c -x assembler pages.asm -o pages.o
install:
install centr /usr/bin/centr
clean:
rm *.o
rm centr
centr: buf.o pages.o centr.c
gcc centr.c buf.o pages.o -o centr
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment