diff options
author | Dimitri Sokolyuk <demon@dim13.org> | 2012-04-18 03:47:31 +0000 |
---|---|---|
committer | Dimitri Sokolyuk <demon@dim13.org> | 2012-04-18 03:47:31 +0000 |
commit | ce38b43357c573f4a68d24a10f847473ff77b305 (patch) | |
tree | 460172d3071b95854d354661a0352c910aa003f3 /Makefile | |
parent | b7fd152aa1f40ca89da321040e8e86a48e19d1e0 (diff) |
Graphic display, no scalling, no input ... jet
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,9 +1,10 @@ # $Id$ PROG= dcpu -SRCS= gramar.y lexer.l emu.c main.c tui.c y.tab.h +SRCS= gramar.y lexer.l emu.c main.c tui.c gui.c y.tab.h NOMAN= -LDADD+= -lcurses +CFLAGS+=`sdl-config --cflags` +LDADD+= `sdl-config --libs` -lcurses DEBUG+= -Wall #DEBUG+= -ggdb -pg #YFLAGS= -dtv |