Revision 49926c64aa2d4ea8cd64b4eaa626d22f43bfaeeb authored by Ron Burkey on 12 October 2018, 13:13:55 UTC, committed by Ron Burkey on 12 October 2018, 13:13:55 UTC
to comments in *.agc files that include the strings -SIMULATION or
+SIMULATION.  The former are automatically commented out if --simulation
is used, while the latter are commented out is --simulation is *not*
used.  All of that was for the sole purpose of adding a -SIMULATION
specifier to a single line in Validation.agc that proves inconvenient
sometimes for simulations of the AGC electronics.  There's a new target
in the top-level Makefile (namely Validation-hardware-simulation) that
isn't one of the default ones, but which when used, builds a separate
rope (Validation/Validation-hardware-simulation.agc.bin) and html with
that one inconvenient line in Validation.agc commented out.  Overkill, I
know.
1 parent 0a720cd
Raw File
Makefile
# Copyright 2011,2012 Ronald S. Burkey <info@sandroid.org>
# 
# This file is part of yaAGC.
#
# yaAGC is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# yaAGC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with yaAGC; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
# Filename:	Makefile
# Purpose:	Makefile for the yaPanel emulation of Gemini peripherals
#		MDR, MDK, IVI, PCDP, TRS.
# Mods:		2011-12-30 RSB	Began.
#		2012-01-02 RSB	Prepared for first save to svn.
#
# The default is to build using the native gcc. To cross build from 
# Linux to get Win32 and Mac OS X executables as well (make all-archs), 
# you need to have IMCROSS (http://www/sandroid.org/imcross) installed.

ifeq "${USER}" "rburkey"
TARGET=yaPanel
CFLAGS=-Wall -Werror
WEB=${HOME}/Projects/sandroid.org/public_html/apollo/Downloads
else
endif

.PHONY:	default
default: ${TARGET}

${TARGET}: ${TARGET}.cpp Makefile
	${CC} ${CFLAGS} `wx-config --cxxflags` -o $@ \
		-I../enet/include $< ../enet/*.c \
		`wx-config --libs`

.PHONY: clean
clean:
	-rm ${TARGET} ${TARGET}.exe ${TARGET}-macosx

back to top