Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
s-macke committed May 13, 2013
1 parent 26267d4 commit e23a526
Show file tree
Hide file tree
Showing 8 changed files with 3,319 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
OBJS = reciter.o sam.o main.o

CC = gcc
CFLAGS = -Wall -O2 -DUSESDL `sdl-config --cflags`
LFLAGS = `sdl-config --libs`

Sam: $(OBJS)
$(CC) -osam $(OBJS) $(LFLAGS)

main.o: main.c sam.h
$(CC) $(CFLAGS) -c main.c

reciter.o: reciter.c reciter.h
$(CC) $(CFLAGS) -c reciter.c

sam.o: sam.c sam.h
$(CC) $(CFLAGS) -c sam.c

tar:
tar -cvzf sam.tar.gz Makefile main.c reciter.c reciter.h ReciterTabs.h sam.c sam.h SamTabs.h

clean:
rm *.o
233 changes: 233 additions & 0 deletions src/ReciterTabs.h

Large diffs are not rendered by default.

Loading

0 comments on commit e23a526

Please sign in to comment.