mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
65018f75b7
emenueditor
39 lines
851 B
Makefile
39 lines
851 B
Makefile
#
|
|
# $Id: Makefile 1696 2006-07-21 13:23:37Z karijes $
|
|
#
|
|
# Part of Equinox Desktop Environment (EDE).
|
|
# Copyright (c) 2000-2006 EDE Authors.
|
|
#
|
|
# This program is licenced under terms of the
|
|
# GNU General Public Licence version 2 or newer.
|
|
# See COPYING for details.
|
|
|
|
include ../../makeinclude
|
|
|
|
define make_test
|
|
ALL += $1
|
|
$1 : $1.cpp
|
|
echo Compiling $$<...
|
|
$(CXX) $(CXXFLAGS) $$< -o $$@ $(LIBS)
|
|
endef
|
|
|
|
# Note: $(eval...) must be used instead plain $(call...)
|
|
# since variables will not be expanded correctly
|
|
|
|
$(eval $(call make_test, basic_moveresize))
|
|
|
|
sound_test.o : sound_test.cpp
|
|
echo "Compiling $<..."
|
|
$(CXX) $(CXXFLAGS) -c $<
|
|
Sound.o : ../Sound.cpp
|
|
echo "Compiling $<..."
|
|
$(CXX) $(CXXFLAGS) -c $<
|
|
sound_test: sound_test.o Sound.o
|
|
$(CXX) sound_test.o Sound.o ../debug.o -o $@ $(LIBS)
|
|
|
|
all: $(ALL) sound_test
|
|
|
|
clean:
|
|
$(RM) $(ALL)
|
|
$(RM) *.o
|