- Timestamp:
- 10/26/2017 08:04:09 PM (7 years ago)
- Branches:
- master
- Children:
- 5326a5e
- Parents:
- 0d83ce8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r0d83ce8 r0529a19 3 3 ifndef WIN 4 4 GCC := gcc 5 GPP := g++ 5 6 SDL2 := /opt/sdl2 7 RTMIDI := /opt/rtmidi 6 8 EXT := 7 9 else … … 14 16 SDL2_LIB := $(SDL2)/lib 15 17 18 RTMIDI_INC := $(RTMIDI)/include 19 RTMIDI_LIB := $(RTMIDI)/lib 20 16 21 FLAGS := -std=c99 -O2 -gdwarf-4 17 22 … … 23 28 -Wpedantic -Wconversion -Wsign-conversion -Wshadow \ 24 29 -Wstrict-prototypes -Wmissing-declarations -Wredundant-decls \ 25 -I cpu -I emu -I build -I $(SDL2_INC) 30 -I cpu -I emu -I build -I $(SDL2_INC) -I $(RTMIDI_INC) 26 31 27 32 FLAGS_AUX := $(FLAGS) -Wall -Wextra \ … … 37 42 $(SDL2_LIB)/libSDL2_ttf.a \ 38 43 $(SDL2_LIB)/libfreetype.a \ 44 $(RTMIDI_LIB)/librtmidi.a \ 39 45 -ldl -lm 40 46 endif … … 47 53 $(SDL2_LIB)/libSDL2_ttf.a \ 48 54 $(SDL2_LIB)/libfreetype.a \ 55 $(RTMIDI_LIB)/librtmidi.a \ 49 56 -framework AppKit \ 50 57 -framework AudioToolbox \ 51 58 -framework Carbon \ 59 -framework CoreMIDI \ 52 60 -framework CoreAudio \ 53 61 -framework CoreFoundation \ … … 116 124 117 125 buchla$(EXT): $(CPU_OP) $(GEN_OP) $(EMU_OP) 118 $(G CC) $(FLAGS_LNK) -o buchla$(EXT) \126 $(GPP) $(FLAGS_LNK) -o buchla$(EXT) \ 119 127 $(CPU_OP) $(GEN_OP) $(EMU_OP) \ 120 128 $(LIBS)
Note:
See TracChangeset
for help on using the changeset viewer.