1
0
Fork 0
mirror of https://github.com/ErikAndren/cue2pops-mac.git synced 2025-04-19 15:38:04 +02:00

Initial makefile

This commit is contained in:
Erik Andrén Zachrisson 2015-10-30 21:49:01 +01:00
commit 9631990390

9
Makefile Normal file
View file

@ -0,0 +1,9 @@
SRC = cue2pops.c
CC = gcc
TARGET=cue2pops
all:
$(CC) $(SRC) -o $(TARGET)