mirror of
1
0
Fork 0

Added make file

This commit is contained in:
Stephen Cochrane 2020-05-05 19:39:03 +02:00
parent 2c4016ad44
commit cb33729f2e
1 changed files with 16 additions and 0 deletions

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
# Makefile for the Plugable EDitor #
CC=gcc
FLAGS=-Wall -pedantic
EXE=bin/ped
all: install
$(CC) $(FLAGS) -o $(EXE) src/ped.c
install:
mkdir -p obj
mkdir -p bin
clean:
rm -rf bin
rm -rf obj