Skip to content

Commit

Permalink
Added makefile missing from last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
sarah-walker-pcem committed Oct 15, 2019
1 parent 7fcc4bf commit 83c62c3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions podules/ultimatecdrom/src/Makefile.linux
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
VPATH = . ../../common/cdrom ../../common/sound
CPP = g++
CC = gcc
OBJ = mitsumi.o ultimatecdrom.o cdrom-linux-ioctl.o sound_openal.o
LIBS = -shared -lopenal
CFLAGS = $(INCS) -DBUILDING_DLL=1 -I../../../src -I../../common/cdrom -I../../common/sound -g3 -fPIC

all: ultimatecdrom

clean:
rm *.o
rm *.so

ultimatecdrom: $(OBJ)
$(CC) $(OBJ) $(LIBS) -o ultimatecdrom.so

%.o: %.c
$(CC) $(CFLAGS) -c $<

0 comments on commit 83c62c3

Please sign in to comment.