about summary refs log tree commit diff
path: root/Makefile
blob: 2bc39b79e0d5b35315b664044acc952082f0e9ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC=egcc
CFLAGS=-std=c99 -g -Wall -I. -lpthread -lSDL2

all: chip8_emulator

%.o: %.c
	$(CC) $(CFLAGS) -c $^

chip8_emulator: emulator.o main.c
	$(CC) $(CFLAGS) -o $@ $^

clean:
	rm *.o chip8_emulator