diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-08-15 17:03:03 +1000 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-08-15 17:03:03 +1000 |
commit | dc2e476c52a24ca910d2c1e60347fd5bce889169 (patch) | |
tree | fdb37eb252d2dd7cbf3f6eb7c8ba8ff3768ddf1a /makefile | |
parent | db83125332af3622d5dfec5d73a93b7593898d5b (diff) |
forgone build process & misc stuff
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 25 |
1 files changed, 2 insertions, 23 deletions
@@ -1,28 +1,7 @@ SDL = -L/usr/lib -lSDL2 -OBJS = build/6502.o build/addressing.o build/instructions.o build/table.o build/apple.o - -build/6502.o: - gcc -c src/cpu/6502.c -o build/6502.o -build/addressing.o: - gcc -c src/cpu/addressing.c -o build/addressing.o -build/instructions.o: - gcc -c src/cpu/instructions.c -o build/instructions.o -build/table.o: - gcc -c src/cpu/table.c -o build/table.o -build/apple.o: - gcc -c src/apple.c -o build/apple.o - - - - - - -default: $(OBJS) - gcc src/main.c -o build/main - -interpreter: $(OBJS) - gcc src/interpreter.c -o interpreter $(OBJS) +interpreter: + gcc src/interpreter.c -o build/testing clean: rm build/*
\ No newline at end of file |