X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=makefile;h=5211ee3f054b3eb3cfd94fc5cc0a483e01eec663;hb=HEAD;hp=e19b93ab4cb994aad4f93fb354e5e4137f014f9d;hpb=a7c3ff9deab4cefbc76ac52d38b67e7033c63cf6;p=thunder diff --git a/makefile b/makefile index e19b93a..5211ee3 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,7 @@ # This software is licensed under the GPL v3 or later # -ifeq "$(OSTYPE)" "msys" # Win32 +ifeq "$(OSTYPE)" "msys" # Win32 SYSTYPE = __GCCWIN32__ EXESUFFIX = .exe @@ -50,7 +50,7 @@ CPPFLAGS = -MMD -Wall -Wno-switch -Wno-non-virtual-dtor -Wno-uninitialized -Wno- LDFLAGS = -# Ugh, let's get rid of the ref to -lcurses +# Ugh, let's get rid of the ref to -lcurses [DONE] LIBS = `sdl2-config $(SDLLIBTYPE)` -lstdc++ -lz -lm $(GLLIB) INCS = -I. -Isrc @@ -58,11 +58,14 @@ INCS = -I. -Isrc OBJS = \ obj/dis63701.o \ obj/dis6809.o \ + obj/fileio.o \ obj/gui.o \ obj/icon-64x64.o \ obj/log.o \ + obj/psg.o \ obj/resource.o \ obj/screen.o \ + obj/sound.o \ obj/v63701.o \ obj/v6809.o \ obj/video.o \ @@ -79,7 +82,7 @@ all: checkenv message obj $(TARGET)$(EXESUFFIX) checkenv: @echo @echo -en "\033[01;33m***\033[00;32m Checking compilation environment... \033[00m" -ifeq "" "$(shell which sdl-config)" +ifeq "" "$(shell which sdl2-config)" @echo @echo @echo -e "\033[01;33mIt seems that you don't have the SDL development libraries installed.