Changes in Makefile [0529a19:59ea67d] in buchla-emu


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r0529a19 r59ea67d  
    33ifndef WIN
    44GCC :=                  gcc
    5 GPP :=                  g++
    65SDL2 :=                 /opt/sdl2
    7 RTMIDI :=               /opt/rtmidi
    86EXT :=
    97else
     
    1614SDL2_LIB :=             $(SDL2)/lib
    1715
    18 RTMIDI_INC :=   $(RTMIDI)/include
    19 RTMIDI_LIB :=   $(RTMIDI)/lib
    20 
    2116FLAGS :=                -std=c99 -O2 -gdwarf-4
    2217
     
    2823                                -Wpedantic -Wconversion -Wsign-conversion -Wshadow \
    2924                                -Wstrict-prototypes -Wmissing-declarations -Wredundant-decls \
    30                                 -I cpu -I emu -I build -I $(SDL2_INC) -I $(RTMIDI_INC)
     25                                -I cpu -I emu -I build -I $(SDL2_INC)
    3126
    3227FLAGS_AUX :=    $(FLAGS) -Wall -Wextra \
     
    4237                                $(SDL2_LIB)/libSDL2_ttf.a \
    4338                                $(SDL2_LIB)/libfreetype.a \
    44                                 $(RTMIDI_LIB)/librtmidi.a \
    4539                                -ldl -lm
    4640endif
     
    5347                                $(SDL2_LIB)/libSDL2_ttf.a \
    5448                                $(SDL2_LIB)/libfreetype.a \
    55                                 $(RTMIDI_LIB)/librtmidi.a \
    5649                                -framework AppKit \
    5750                                -framework AudioToolbox \
    5851                                -framework Carbon \
    59                                 -framework CoreMIDI \
    6052                                -framework CoreAudio \
    6153                                -framework CoreFoundation \
     
    124116
    125117buchla$(EXT):   $(CPU_OP) $(GEN_OP)     $(EMU_OP)
    126                                 $(GPP) $(FLAGS_LNK) -o buchla$(EXT) \
     118                                $(GCC) $(FLAGS_LNK) -o buchla$(EXT) \
    127119                                $(CPU_OP) $(GEN_OP) $(EMU_OP) \
    128120                                $(LIBS)
Note: See TracChangeset for help on using the changeset viewer.