## FLXLab v2.5 - A program for running psychology experiments.  
## Copyright (C) 2010 Todd R. Haskell (todd.haskell@wwu.edu) 
## 
## Use and distribution is governed by the terms of the 
## GNU General Public License. Certain portions of the 
## program may be subject to other licenses as well. See 
## the file LICENSE.TXT for details.
## 
include ../Makefile.modules
include ../Makefile.allegro

.PHONY: custom_install custom_uninstall

CFLAGS += -I../mod_graphics/include -I../mod_gui/include 
ifeq ($(FLXLABOS),linux)
	LIBFLAGS += -L../mod_graphics/lib -lflxgraphics -L../mod_gui/lib -lflxgui
endif
ifeq ($(FLXLABOS),windows)
	LIBFLAGS += -L../mod_graphics/lib -lflxgraphics -L../mod_gui/lib -lflxgui
endif
ifeq ($(FLXLABOS),mac)
	DUMMY = dummy	
endif

custom_install:
	cp startscreen.jpg $(FLXLABRESOURCEDIR)

custom_uninstall:
	rm -f $(FLXLABRESOURCEDIR)/startscreen.jpg





