This rename completes the migration from X11 to SDL
[virtual-nascom.git] / Makefile
blob817dc8eab8b65854b73d5974bcea2f059b9fa13f
1 # Makefile for VirtualNascom
3 # CC must be an ANSI-C compiler
4 CC=gcc
6 # full speed or debugging to taste
7 OPTIMIZE=-O2
8 #OPTIMIZE=-g
9 #WARN=-Wmost -Werror
10 WARN=-Wall
11 CFLAGS=$(OPTIMIZE) $(WARN) $(shell sdl-config --cflags)
13 virtualnascom: virtualnascom.o font.o simz80.o
14 $(CC) $(CWARN) $(shell sdl-config --libs) $^ -o $@
16 clean:
17 rm -f *.o *~ core