Changes in Makefile [0529a19:59ea67d] in buchla-emu
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r0529a19 r59ea67d 3 3 ifndef WIN 4 4 GCC := gcc 5 GPP := g++6 5 SDL2 := /opt/sdl2 7 RTMIDI := /opt/rtmidi8 6 EXT := 9 7 else … … 16 14 SDL2_LIB := $(SDL2)/lib 17 15 18 RTMIDI_INC := $(RTMIDI)/include19 RTMIDI_LIB := $(RTMIDI)/lib20 21 16 FLAGS := -std=c99 -O2 -gdwarf-4 22 17 … … 28 23 -Wpedantic -Wconversion -Wsign-conversion -Wshadow \ 29 24 -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) 31 26 32 27 FLAGS_AUX := $(FLAGS) -Wall -Wextra \ … … 42 37 $(SDL2_LIB)/libSDL2_ttf.a \ 43 38 $(SDL2_LIB)/libfreetype.a \ 44 $(RTMIDI_LIB)/librtmidi.a \45 39 -ldl -lm 46 40 endif … … 53 47 $(SDL2_LIB)/libSDL2_ttf.a \ 54 48 $(SDL2_LIB)/libfreetype.a \ 55 $(RTMIDI_LIB)/librtmidi.a \56 49 -framework AppKit \ 57 50 -framework AudioToolbox \ 58 51 -framework Carbon \ 59 -framework CoreMIDI \60 52 -framework CoreAudio \ 61 53 -framework CoreFoundation \ … … 124 116 125 117 buchla$(EXT): $(CPU_OP) $(GEN_OP) $(EMU_OP) 126 $(G PP) $(FLAGS_LNK) -o buchla$(EXT) \118 $(GCC) $(FLAGS_LNK) -o buchla$(EXT) \ 127 119 $(CPU_OP) $(GEN_OP) $(EMU_OP) \ 128 120 $(LIBS)
Note:
See TracChangeset
for help on using the changeset viewer.