~lgb/x-emulators/dev

« back to all changes in this revision

Viewing changes to targets/c900/Makefile

  • Committer: GitHub
  • Author(s): LGB
  • Date: 2020-06-09 11:33:47 UTC
  • mfrom: (265.1.101)
  • Revision ID: git-v1:527c2b021966f6f9f2444c23d6402c141d1c19d2
Merge pull request #116 from lgblgblgb/dev

Merge dev stage into master

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
## including the Commodore LCD and Commodore 65 too. This is now a try to
3
3
## emulate the Z8001 based Commodore 900 :-O I said, "a try" ...
4
4
##
5
 
## Copyright (C)2018 LGB (Gábor Lénárt) <lgblgblgb@gmail.com>
 
5
## Copyright (C)2016-2020 LGB (Gábor Lénárt) <lgblgblgb@gmail.com>
6
6
#
7
7
# This program is free software; you can redistribute it and/or modify
8
8
# it under the terms of the GNU General Public License as published by
22
22
PRG_TARGET      = xc900
23
23
EMU_DESCRIPTION = Commodore 900
24
24
 
25
 
CFLAGS_TARGET_xc900     =
26
25
SRCS_TARGET_xc900       = commodore_900.c z8k1.c z8010.c
27
26
SRCS_COMMON_xc900       = emutools.c emutools_config.c emutools_files.c
28
 
CONFIG_CFLAGS_TARGET_xc900      = sdl2|math
29
 
CONFIG_LDFLAGS_TARGET_xc900     = sdl2|math
 
27
CFLAGS_TARGET_xc900     = $(SDL2_CFLAGS) $(MATH_CFLAGS)
 
28
LDFLAGS_TARGET_xc900    = $(SDL2_LIBS) $(MATH_LIBS)
30
29
 
31
30
include ../../build/Makefile.common